diff --git a/functionsystem/build.sh b/functionsystem/build.sh index 3ea53b7a9effc658c3467f448c906ee6e8d51e78..37d69b54b2519645dff2d4cb786be5035ad7f87c 100644 --- a/functionsystem/build.sh +++ b/functionsystem/build.sh @@ -585,7 +585,7 @@ function run_unit_test() local MAX_RETRIES=3 # Define the sequence part of gtest case matches, put fail-prone use cases in the front - local gtest_filter_sequence_part="MetaStoreTest.*:RuntimeExecutorTest.*:MetaStoreClientTest.*:InstanceCtrlTest.*:BootstrapDriverTest.*:HealthCheckTest.*:RuntimeStdRedirectorTest.*:FilesTest.*:S3DeployerTest.*:LeaderTest.*" + local gtest_filter_sequence_part="MetaStoreClientTest.*:InstanceCtrlTest.*:BootstrapDriverTest.*:S3DeployerTest.*:LeaderTest.*" echo "Running sequence part tests" | tee -a /tmp/unit_test.log # Split the sequence part into individual test suites and run them one by one @@ -627,7 +627,7 @@ function run_unit_test() # Run test cases in parallel echo "Running parallel tests" # Define the left part (excluding the other parts) - gtest_filter_part_left="-" + gtest_filter_part_left="-MetaStoreTest.*:RuntimeExecutorTest.*:HealthCheckTest.*:RuntimeStdRedirectorTest.*:FilesTest.*:" IFS=":" # Set the delimiter to colon for test_case in $gtest_filter_sequence_part; do gtest_filter_part_left="${gtest_filter_part_left}:${test_case}"