diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d9e17ddf31..1b04458de7 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -87,7 +87,7 @@ if(WITH_PYTHON) add_fdb_test(TEST_FILES StorageMetricsSampleTests.txt IGNORE) add_fdb_test(TEST_FILES StreamingWrite.txt IGNORE) add_fdb_test(TEST_FILES ThreadSafety.txt IGNORE) - add_fdb_test(TEST_FILES Throttling.txt IGNORE) + add_fdb_test(TEST_FILES Throttling.toml IGNORE) add_fdb_test(TEST_FILES TraceEventMetrics.txt IGNORE) add_fdb_test(TEST_FILES PopulateTPCC.txt IGNORE) add_fdb_test(TEST_FILES TPCC.txt IGNORE) diff --git a/tests/Throttling.toml b/tests/Throttling.toml new file mode 100644 index 0000000000..539ac8cfda --- /dev/null +++ b/tests/Throttling.toml @@ -0,0 +1,13 @@ +[[test]] +testTitle='ThrottlingTest' + [[test.workload]] + testName='Throttling' + testDuration = 60.0 + actorsPerClient=10 + readsPerTransaction=10 + writesPerTransaction=10 + throttlingMultiplier=0.5 + maxBurst=10000 + + [[test.workload]] + testName='HealthMetricsApi' diff --git a/tests/Throttling.txt b/tests/Throttling.txt deleted file mode 100644 index d55ce34f93..0000000000 --- a/tests/Throttling.txt +++ /dev/null @@ -1,10 +0,0 @@ -testTitle=Throttling - testName=Throttling - testDuration=60.0 - actorsPerClient=10 - readsPerTransaction=10 - writesPerTransaction=10 - throttlingMultiplier=0.5 - maxBurst=10000 - - testName=HealthMetricsApi