diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-29 16:27:33 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-12-02 11:04:20 +0100 |
commit | fcb5f8625c8b872497c88cc23f169926d691e308 (patch) | |
tree | 3fd84a659b2121beba9f464fa7a6c6ae3fe0c19d | |
parent | 0dc8ddb40878115a58c520476f11f02ff352210c (diff) | |
download | justbuild-fcb5f8625c8b872497c88cc23f169926d691e308.tar.gz |
Increase parallelism in just_mr_mp
-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 |