From 01f1fa39efd05b1b219b1a6dd79169455fea83aa Mon Sep 17 00:00:00 2001 From: yexu2535 Date: Mon, 27 Oct 2025 12:00:38 +0000 Subject: [PATCH 1/3] just for test Signed-off-by: yexu2535 --- functionsystem/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functionsystem/build.sh b/functionsystem/build.sh index 3ea53b7..dd22084 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.*:HealthCheckTest.*:RuntimeStdRedirectorTest.*:FilesTest.*: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.*:" 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}" -- Gitee From fa0b1a6d5e4e04ebffe5277578d3e3d9b286cc50 Mon Sep 17 00:00:00 2001 From: yexu2535 Date: Mon, 27 Oct 2025 13:32:14 +0000 Subject: [PATCH 2/3] update functionsystem/build.sh. Signed-off-by: yexu2535 --- functionsystem/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functionsystem/build.sh b/functionsystem/build.sh index dd22084..f12fa47 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="MetaStoreClientTest.*:InstanceCtrlTest.*:BootstrapDriverTest.*:HealthCheckTest.*:RuntimeStdRedirectorTest.*:FilesTest.*:S3DeployerTest.*:LeaderTest.*" + local gtest_filter_sequence_part="MetaStoreClientTest.*:InstanceCtrlTest.*:BootstrapDriverTest.*:RuntimeStdRedirectorTest.*:FilesTest.*: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="-MetaStoreTest.*:RuntimeExecutorTest.*:" + gtest_filter_part_left="-MetaStoreTest.*:RuntimeExecutorTest.*:HealthCheckTest.*:" 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}" -- Gitee From 9f09d90e14c44e7f0d145d44ea947bf1e5d1f26f Mon Sep 17 00:00:00 2001 From: yexu2535 Date: Tue, 28 Oct 2025 01:34:21 +0000 Subject: [PATCH 3/3] update functionsystem/build.sh. Signed-off-by: yexu2535 --- functionsystem/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functionsystem/build.sh b/functionsystem/build.sh index f12fa47..37d69b5 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="MetaStoreClientTest.*:InstanceCtrlTest.*:BootstrapDriverTest.*: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="-MetaStoreTest.*:RuntimeExecutorTest.*:HealthCheckTest.*:" + 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}" -- Gitee