summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/csuite/wt9937_parse_opts/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/csuite/wt9937_parse_opts/main.c')
-rw-r--r--src/third_party/wiredtiger/test/csuite/wt9937_parse_opts/main.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/third_party/wiredtiger/test/csuite/wt9937_parse_opts/main.c b/src/third_party/wiredtiger/test/csuite/wt9937_parse_opts/main.c
index d0440e074e4..3a1a216ffa3 100644
--- a/src/third_party/wiredtiger/test/csuite/wt9937_parse_opts/main.c
+++ b/src/third_party/wiredtiger/test/csuite/wt9937_parse_opts/main.c
@@ -118,11 +118,11 @@ static TEST_DRIVER driver[] = {
{{"parse_opts", "-v", "-PT", NULL}, {NULL, "dir_store", NONZERO, NONZERO, true, true, 0},
{NULL, 0, 0, 0}},
- {{"parse_opts", "-v", "-Po", "my_store", "-PT", NULL},
- {NULL, "my_store", NONZERO, NONZERO, true, true, 0}, {NULL, 0, 0, 0}},
+ {{"parse_opts", "-v", "-Po", "dir_store", "-PT", NULL},
+ {NULL, "dir_store", NONZERO, NONZERO, true, true, 0}, {NULL, 0, 0, 0}},
- {{"parse_opts", "-vPomy_store", "-PT", NULL}, {NULL, "my_store", NONZERO, NONZERO, true, true, 0},
- {NULL, 0, 0, 0}},
+ {{"parse_opts", "-vPodir_store", "-PT", NULL},
+ {NULL, "dir_store", NONZERO, NONZERO, true, true, 0}, {NULL, 0, 0, 0}},
/* Setting random seeds can be done together or separately. */
{{"parse_opts", "-PT", "-PSE2345,D1234", NULL}, {NULL, "dir_store", 1234, 2345, true, false, 0},
@@ -138,20 +138,20 @@ static TEST_DRIVER driver[] = {
* From here on, we are using some "extended" options, see previous comment. We set the argv[0] to
* "parse_single_opt" to indicate to use the extended parsing idiom.
*/
- {{"parse_single_opt", "-vd", "-Pomy_store", "-c", "string_opt", "-PT", NULL},
- {NULL, "my_store", NONZERO, NONZERO, true, true, 0}, {(char *)"string_opt", true, false, 0}},
+ {{"parse_single_opt", "-vd", "-Podir_store", "-c", "string_opt", "-PT", NULL},
+ {NULL, "dir_store", NONZERO, NONZERO, true, true, 0}, {(char *)"string_opt", true, false, 0}},
- {{"parse_single_opt", "-dv", "-Pomy_store", "-cstring_opt", "-PT", NULL},
- {NULL, "my_store", NONZERO, NONZERO, true, true, 0}, {(char *)"string_opt", true, false, 0}},
+ {{"parse_single_opt", "-dv", "-Podir_store", "-cstring_opt", "-PT", NULL},
+ {NULL, "dir_store", NONZERO, NONZERO, true, true, 0}, {(char *)"string_opt", true, false, 0}},
- {{"parse_single_opt", "-ev", "-cstring_opt", "-Pomy_store", "-PT", "-f", "22", NULL},
- {NULL, "my_store", NONZERO, NONZERO, true, true, 0}, {(char *)"string_opt", false, true, 22}},
+ {{"parse_single_opt", "-ev", "-cstring_opt", "-Podir_store", "-PT", "-f", "22", NULL},
+ {NULL, "dir_store", NONZERO, NONZERO, true, true, 0}, {(char *)"string_opt", false, true, 22}},
- {{"parse_single_opt", "-evd", "-Pomy_store", "-PT", "-f22", NULL},
- {NULL, "my_store", NONZERO, NONZERO, true, true, 0}, {NULL, true, true, 22}},
+ {{"parse_single_opt", "-evd", "-Podir_store", "-PT", "-f22", NULL},
+ {NULL, "dir_store", NONZERO, NONZERO, true, true, 0}, {NULL, true, true, 22}},
- {{"parse_single_opt", "-v", "-Pomy_store", "-PT", NULL},
- {NULL, "my_store", NONZERO, NONZERO, true, true, 0}, {NULL, false, false, 0}},
+ {{"parse_single_opt", "-v", "-Podir_store", "-PT", NULL},
+ {NULL, "dir_store", NONZERO, NONZERO, true, true, 0}, {NULL, false, false, 0}},
};
/*