summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-11-19 04:01:32 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-11-19 04:01:32 +0000
commit626374eed9ee4aea2c0f3427a28006515491338b (patch)
treeb3f9b993838100cefce66840d1ef9c930ad7c640
parentec466507064006af7f28b731be33be54fddb9295 (diff)
downloaduClibc-alpine-626374eed9ee4aea2c0f3427a28006515491338b.tar.bz2
uClibc-alpine-626374eed9ee4aea2c0f3427a28006515491338b.tar.xz
Merge from trunk.
-rw-r--r--test/README1
-rw-r--r--test/Test.mak2
2 files changed, 3 insertions, 0 deletions
diff --git a/test/README b/test/README
index 18d34e88a..4704b57c5 100644
--- a/test/README
+++ b/test/README
@@ -6,6 +6,7 @@ The following make variables may help you in testing:
- UCLIBC_ONLY - only run tests against uClibc
- GLIBC_ONLY - only run tests against glibc
- COMPILE_ONLY - just build the tests, don't run them
+ - CHECK_ONLY - only run the tests, don't compile or link them
- V / VERBOSE - run tests with a lot of output
So, to just run the uClibc tests, try this:
diff --git a/test/Test.mak b/test/Test.mak
index 687366b7c..6477e26ad 100644
--- a/test/Test.mak
+++ b/test/Test.mak
@@ -72,9 +72,11 @@ define exec_test
endef
$(U_TARGETS):
+ifeq ($(CHECK_ONLY),)
$(showlink)
$(Q)$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(CFLAGS_$@) -c $@.c -o $@.o
$(Q)$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LDFLAGS) $(LDFLAGS_$@)
+endif
ifeq ($(COMPILE_ONLY),)
$(exec_test)
$(diff_test)