projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
633fb32
)
redirect output of time to standard output stream
author
Paul Brossier
<piem@altern.org>
Tue, 10 Oct 2006 13:13:51 +0000
(13:13 +0000)
committer
Paul Brossier
<piem@altern.org>
Tue, 10 Oct 2006 13:13:51 +0000
(13:13 +0000)
redirect output of time to standard output stream
examples/tests/Makefile.am
patch
|
blob
|
history
diff --git
a/examples/tests/Makefile.am
b/examples/tests/Makefile.am
index 0ff34753cec4959c26688bdf1d823ed6c344e0d4..7c44abfbd419ecfc1c3d84ba5542ebf42fe5b22b 100644
(file)
--- a/
examples/tests/Makefile.am
+++ b/
examples/tests/Makefile.am
@@
-30,7
+30,7
@@
bin_PROGRAMS = \
test-tss
run-tests: $(bin_PROGRAMS)
- @for i in $(bin_PROGRAMS); do echo $$i;
time (./$$i 2>&1 > /dev/null
; echo $$?); done
+ @for i in $(bin_PROGRAMS); do echo $$i;
((time ./$$i 2>&1 > /dev/null) 2>&1
; echo $$?); done
run-valgrind-tests: $(bin_PROGRAMS)
@for i in $(bin_PROGRAMS); do echo $$i; valgrind .libs/lt-$$i 2>&1 | grep ERROR\ SUMMARY -A4; echo $$?; done