ponyapi/client/test.sh

12 lines
111 B
Bash
Executable File

#!/bin/bash
set -e
for client in *
do
if [ -d "$client" ]
then
time (cd "$client" && ./test.sh)
fi
done