From 272ef8793393b558adeba3ecc65458f0f4b77c83 Mon Sep 17 00:00:00 2001 From: Xiaoxi Wang Date: Wed, 22 Jul 2020 05:06:54 +0000 Subject: [PATCH] toml file --- tests/CMakeLists.txt | 2 +- tests/Throttling.toml | 13 +++++++++++++ tests/Throttling.txt | 10 ---------- 3 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 tests/Throttling.toml delete mode 100644 tests/Throttling.txt 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