]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix pretty printer tests for run-built-tests == no
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Fri, 30 Dec 2016 04:12:38 +0000 (09:42 +0530)
committerSiddhesh Poyarekar <siddhesh@sourceware.org>
Fri, 30 Dec 2016 04:12:38 +0000 (09:42 +0530)
In my change to add configure tests for python I had a brainfart where
I tried to filter out unsupported tests from tests-printers-programs
instead of tests-printers to select tests to build.  I realize now
that all of that is completely unnecessary and it would be safe to
just build the tests as long as we don't try to run it.

This patch reverts that bit of the change.  Tested with
run-built-tests = no in config.make.

* Rules (tests): Add tests-printers-programs to tests to be
built.

ChangeLog
Rules

index 60b905d5693871bac7f603feee12dd6a18df6271..f188d884ba0d873b38101295928b25faf95447db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-12-30  Siddhesh Poyarekar  <siddhesh@sourceware.org>
+
+       * Rules (tests): Add tests-printers-programs to tests to be
+       built.
+
 2016-12-28  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
        * sysvipc/Makefile (tests): Add test-sysvshm.
diff --git a/Rules b/Rules
index 558924d6536616ffa4fad066c9570c9e85f51f2f..3195f590d3eb32d9b3888180c16757c33e16f9f1 100644 (file)
--- a/Rules
+++ b/Rules
@@ -129,9 +129,9 @@ endif
 others: $(py-const)
 
 ifeq ($(run-built-tests),no)
-tests: $(addprefix $(objpfx),$(filter-out $(tests-unsupported),$(tests) \
-                              $(tests-printers-programs)) \
-                            $(test-srcs)) $(tests-special)
+tests: $(addprefix $(objpfx),$(filter-out $(tests-unsupported),$(tests)) \
+                            $(test-srcs)) $(tests-special) \
+                            $(tests-printers-programs)
 xtests: tests $(xtests-special)
 else
 tests: $(tests:%=$(objpfx)%.out) $(tests-special) $(tests-printers-out)