From fcb5f8625c8b872497c88cc23f169926d691e308 Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Fri, 29 Nov 2024 16:27:33 +0100 Subject: Increase parallelism in just_mr_mp --- test/end-to-end/just-mr/just-mr.test.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'test') 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 -- cgit v1.2.3