diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-10 16:50:44 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-11 09:42:15 +0100 |
commit | 7b6604113e322247261eb0d027a97ae44b5f32d1 (patch) | |
tree | 91ffcc5086fc1053d8df55c973ece051dcaeef94 /test | |
parent | 5643900913f64c00f1c2958914586708efa5a473 (diff) |
test: run test{,_glibc} adjacent
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/Test.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Test.mak b/test/Test.mak index dbed09624..ea710d67d 100644 --- a/test/Test.mak +++ b/test/Test.mak @@ -35,7 +35,8 @@ endif CLEAN_TARGETS := $(U_TARGETS) $(G_TARGETS) CLEAN_TARGETS += $(TESTS_DISABLED) $(addsuffix _glibc,$(TESTS_DISABLED)) $(GLIBC_TESTS_DISABLED) COMPILE_TARGETS := $(TARGETS) -RUN_TARGETS := $(addsuffix .exe,$(TARGETS)) +# We sort the targets so uClibc and host-libc tests are run adjacent +RUN_TARGETS := $(sort $(addsuffix .exe,$(TARGETS))) # provide build rules even for disabled tests: U_TARGETS += $(TESTS_DISABLED) G_TARGETS += $(addsuffix _glibc,$(TESTS_DISABLED)) $(GLIBC_TESTS_DISABLED) |