diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-07-25 14:03:23 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-07-25 14:03:23 -0300 |
commit | 9e1951ae887a63a5af4d135fbfc751adb641cf6b (patch) | |
tree | 759400844c28ebf86542fa757e5ab8405f2b6682 | |
parent | 8698af6dcf332f8ce7b3af3e2be3c8c49fec2b0e (diff) | |
download | glibc-9e1951ae887a63a5af4d135fbfc751adb641cf6b.zip glibc-9e1951ae887a63a5af4d135fbfc751adb641cf6b.tar.gz glibc-9e1951ae887a63a5af4d135fbfc751adb641cf6b.tar.bz2 |
debug: Only run sframe tests if run-built-tests is enabled
-rw-r--r-- | debug/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debug/Makefile b/debug/Makefile index ab91d14..4f7ac04 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -300,8 +300,10 @@ dw_unwind_pair := \ first_column = $(foreach pair,$(dw_unwind_pair),$(word 1,$(subst :, ,$(pair)))) tests-dw-unwind = $(patsubst %,$(objpfx)%.out,$(first_column)) +ifeq ($(run-built-tests),yes) tests-special += $(tests-dw-unwind) endif +endif define make-strip-rule $(objpfx)$(word 1,$(subst :, ,$(1))): $(objpfx)$(word 2,$(subst :, ,$(1))) |