diff options
Diffstat (limited to 'test/end-to-end')
-rw-r--r-- | test/end-to-end/just-mr/just-mr.test.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/end-to-end/just-mr/just-mr.test.sh b/test/end-to-end/just-mr/just-mr.test.sh index 105f1b97..eca815fc 100644 --- a/test/end-to-end/just-mr/just-mr.test.sh +++ b/test/end-to-end/just-mr/just-mr.test.sh @@ -295,6 +295,11 @@ test_all & res2=$! test_all & res3=$! test_all & res4=$! +test_all & res5=$! +test_all & res6=$! +test_all & res7=$! +test_all & res8=$! + wait ${res1} if [ $? -ne 0 ]; then error=true @@ -312,6 +317,23 @@ if [ $? -ne 0 ]; then error=true fi +wait ${res5} +if [ $? -ne 0 ]; then + error=true +fi +wait ${res6} +if [ $? -ne 0 ]; then + error=true +fi +wait ${res7} +if [ $? -ne 0 ]; then + error=true +fi +wait ${res8} +if [ $? -ne 0 ]; then + error=true +fi + # check test status if [ $error = true ]; then exit 1 |