summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/cppsuite/tests/run.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/cppsuite/tests/run.cxx')
-rwxr-xr-xsrc/third_party/wiredtiger/test/cppsuite/tests/run.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/test/cppsuite/tests/run.cxx b/src/third_party/wiredtiger/test/cppsuite/tests/run.cxx
index 4e436ff7af3..0c231e6568d 100755
--- a/src/third_party/wiredtiger/test/cppsuite/tests/run.cxx
+++ b/src/third_party/wiredtiger/test/cppsuite/tests/run.cxx
@@ -35,6 +35,7 @@
#include "base_test.cxx"
#include "example_test.cxx"
+#include "burst_inserts.cxx"
#include "hs_cleanup.cxx"
std::string
@@ -114,6 +115,8 @@ run_test(const std::string &test_name, const std::string &config, const std::str
example_test(test_harness::test_args{config, test_name, wt_open_config}).run();
else if (test_name == "hs_cleanup")
hs_cleanup(test_harness::test_args{config, test_name, wt_open_config}).run();
+ else if (test_name == "burst_inserts")
+ burst_inserts(test_harness::test_args{config, test_name, wt_open_config}).run();
else {
test_harness::logger::log_msg(LOG_ERROR, "Test not found: " + test_name);
error_code = -1;
@@ -136,7 +139,8 @@ main(int argc, char *argv[])
{
std::string cfg, config_filename, current_cfg, current_test_name, test_name, wt_open_config;
int64_t error_code = 0;
- const std::vector<std::string> all_tests = {"example_test", "hs_cleanup", "base_test"};
+ const std::vector<std::string> all_tests = {
+ "example_test", "burst_inserts", "hs_cleanup", "base_test"};
/* Set the program name for error messages. */
(void)testutil_set_progname(argv);