8 lines
90 B
Bash
Executable File
8 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Thin wrapper to run all tests
|
|
for t in $(dirname $0)/test_*
|
|
do
|
|
$t
|
|
done
|