summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/Makefile12
-rwxr-xr-xutil/t/stt/stt-works-with-espeak8
2 files changed, 11 insertions, 9 deletions
diff --git a/util/Makefile b/util/Makefile
index d70ca057..3c20f550 100644
--- a/util/Makefile
+++ b/util/Makefile
@@ -4,14 +4,22 @@ test:
@export PATH="$(CURDIR)/bin:$(PATH)"; \
tests="`find t -type f -executable`"; \
i=1; \
+ pids="";\
n=`echo "$$tests" | wc -l`; \
echo $$i..$$n; \
for exe in $$tests; do \
{ \
./$$exe; \
- case $$? in 0) result=ok;; *) result='not ok';; esac; \
+ ret=$$?; \
+ case $$ret in 0) result=ok;; *) result='not ok';; esac; \
echo $$result $$i - $$exe; \
+ exit $$ret;\
} & \
+ pids="$${pids} $$!" \
i=$$(( i+1 )); \
done; \
- wait
+ ret=0;\
+ for pid in $$pids; do \
+ wait $$pid || ret=23;\
+ done; \
+ exit $$ret;
diff --git a/util/t/stt/stt-works-with-espeak b/util/t/stt/stt-works-with-espeak
index ff39f567..31710974 100755
--- a/util/t/stt/stt-works-with-espeak
+++ b/util/t/stt/stt-works-with-espeak
@@ -7,10 +7,4 @@ test_str="hello"
trap "rm $tmp" TERM INT EXIT HUP
espeak --stdout "$test_str" | flac --totally-silent -f -o "$tmp" -
-if stt "$tmp" | egrep "^$test_str\$" >/dev/null ;then
- echo "ok"
- exit 0
-else
- echo "not ok"
- exit 1
-fi
+stt "$tmp" | egrep "^$test_str\$" >/dev/null