summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/utility/misc.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2018-12-05 16:00:08 +1100
committerLuke Chen <luke.chen@mongodb.com>2018-12-05 16:24:35 +1100
commitb74f8750d92f1dc31469261d8fbfe359ae759c29 (patch)
tree8c15b6c91170239c551f11a1e316fdb057bd83c0 /src/third_party/wiredtiger/test/utility/misc.c
parent51ada5ef6dafa2ca29d329edb0a93fc1a91e2ad0 (diff)
downloadmongo-b74f8750d92f1dc31469261d8fbfe359ae759c29.tar.gz
Import wiredtiger: fcb59a43a44222716ddae6d94d45cdfd36b915f7 from branch mongodb-4.2
ref: 74aa2f92a9..fcb59a43a4 for: 4.1.7 WT-4192 Remove WiredTiger raw compression support WT-4319 Improvements to csuite tests WT-4331 Further extend max wait time for test_bug019.py WT-4393 Document cursor behaviour for read committed isolation WT-4410 Split 'unit-test' task to reduce Evergreen Ubuntu build variant runtime WT-4417 Make os_cache_max and os_cache_dirty_max reconfigurable WT-4421 Add a way to calculate modify operations WT-4434 Modify zstd compression level from 3 to 6 WT-4442 Add the ability to duplicate a backup cursor WT-4455 test_wt4156_metadata_salvage with HAVE_ATTACH fails on zSeries WT-4457 Add a maximum of dirty system buffers for the logging subsystem WT-4463 Reduce runtime for csuite handle locks testing WT-4464 In debug output row-store internal page keys may not format correctly WT-4469 Coverity #105148: redundant test
Diffstat (limited to 'src/third_party/wiredtiger/test/utility/misc.c')
-rw-r--r--src/third_party/wiredtiger/test/utility/misc.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/test/utility/misc.c b/src/third_party/wiredtiger/test/utility/misc.c
index 2cc7ad8a94b..8d5605208cf 100644
--- a/src/third_party/wiredtiger/test/utility/misc.c
+++ b/src/third_party/wiredtiger/test/utility/misc.c
@@ -215,6 +215,21 @@ testutil_is_flag_set(const char *flag)
return (enable_long_tests);
}
+/*
+ * testutil_print_command_line --
+ * Print command line arguments for csuite tests.
+ */
+void
+testutil_print_command_line(int argc, char * const *argv)
+{
+ int i;
+
+ printf("Running test command: ");
+ for (i = 0; i < argc; i++)
+ printf("%s ", argv[i]);
+ printf("\n");
+}
+
#ifndef _WIN32
/*
* testutil_sleep_wait --