File size: 155 Bytes
f1f9265
 
 
 
 
 
 
1
2
3
4
5
6
7
8
#/bin/bash
set -e

for t in tests/bash/test_*.sh; do
    echo "========================== Testing $t =================================="
    bash $t;
done