ponyapi/client/test.sh

12 lines
111 B
Bash
Raw Normal View History

2015-08-13 01:22:56 +00:00
#!/bin/bash
set -e
for client in *
do
if [ -d "$client" ]
2015-08-13 01:22:56 +00:00
then
2015-08-14 14:51:12 +00:00
time (cd "$client" && ./test.sh)
2015-08-13 01:22:56 +00:00
fi
done