1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
function RunOneTest()
{
local dir="$1"
cd "$dir"
./run_test
}
RunOneTest "test_modify_singular_modes" &
RunOneTest "test_with_data" &
RunOneTest "test_with_mc/iterations" &
RunOneTest "test_with_mc/simple" &
RunOneTest "test_with_mc/statistics" &
|