diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-07-12 18:59:27 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-07-12 19:18:28 +1000 |
commit | 2ceb8b8c0ac53a9014e83d12e1c758d5f9e07fe6 (patch) | |
tree | a279bac9a77c903c7c1cd2bf2abc87d6a2d856c1 /libflash | |
parent | 68b4d66bdad8bc036073d1a4cbc26e94cdaf908a (diff) | |
download | skiboot-2ceb8b8c0ac53a9014e83d12e1c758d5f9e07fe6.zip skiboot-2ceb8b8c0ac53a9014e83d12e1c758d5f9e07fe6.tar.gz skiboot-2ceb8b8c0ac53a9014e83d12e1c758d5f9e07fe6.tar.bz2 |
make check: make test runs less noisy
Run a small wrapper around some unit tests with the QTEST makefile macro
(QTEST=Quiet TEST). Also, wrap boot tests in mambo and qemu to be quiet
by default.
Both ./test/run.sh and the modified mambo/qemu test runner scripts output
full stdout and stderr in the event of error.
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'libflash')
-rw-r--r-- | libflash/test/Makefile.check | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libflash/test/Makefile.check b/libflash/test/Makefile.check index b90c359..0351a64 100644 --- a/libflash/test/Makefile.check +++ b/libflash/test/Makefile.check @@ -11,10 +11,10 @@ check: libflash-check libc-coverage coverage: libflash-coverage $(LIBFLASH_TEST:%=%-gcov-run) : %-run: % - $(call Q, TEST-COVERAGE ,$< , $<) + $(call QTEST, TEST-COVERAGE ,$< , $<) $(LIBFLASH_TEST:%=%-check) : %-check: % - $(call Q, RUN-TEST ,$(VALGRIND) $<, $<) + $(call QTEST, RUN-TEST ,$(VALGRIND) $<, $<) libflash/test/stubs.o: libflash/test/stubs.c $(call Q, HOSTCC ,$(HOSTCC) $(HOSTCFLAGS) -g -c -o $@ $<, $<) |