summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/format/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/format/config.h')
-rw-r--r--src/third_party/wiredtiger/test/format/config.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/test/format/config.h b/src/third_party/wiredtiger/test/format/config.h
index ea30986f453..7ac71d7877b 100644
--- a/src/third_party/wiredtiger/test/format/config.h
+++ b/src/third_party/wiredtiger/test/format/config.h
@@ -139,7 +139,7 @@ static CONFIG c[] = {
{ "direct_io",
"if direct I/O is configured for data objects", /* 0% */
- C_IGNORE, 0, 0, 1, &g.c_direct_io, NULL },
+ C_IGNORE|C_BOOL, 0, 0, 1, &g.c_direct_io, NULL },
{ "encryption",
"type of encryption (none | rotn-7)",
@@ -165,9 +165,13 @@ static CONFIG c[] = {
"if values are huffman encoded", /* 20% */
C_BOOL, 20, 0, 0, &g.c_huffman_value, NULL },
+ { "independent_thread_rng",
+ "if thread RNG space is independent", /* 75% */
+ C_BOOL, 75, 0, 0, &g.c_independent_thread_rng, NULL },
+
{ "in_memory",
"if in-memory configured",
- C_IGNORE, 0, 0, 1, &g.c_in_memory, NULL },
+ C_IGNORE|C_BOOL, 0, 0, 1, &g.c_in_memory, NULL },
{ "insert_pct",
"percent operations that are inserts",