add script to launch all tests

This commit is contained in:
poka 2022-09-09 01:39:11 +02:00
parent f7e3066352
commit fd281ad822
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#!/bin/bash
for test_file in $(ls integration_test/scenarios/); do
testName=$(echo $test_file | awk -F '.' '{print $1}')
./integration_test/launch_test.sh $testName || break
done