summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/csuite/wt3120_filesys/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/csuite/wt3120_filesys/main.c b/test/csuite/wt3120_filesys/main.c
index a4b830d6a70..09dce624066 100644
--- a/test/csuite/wt3120_filesys/main.c
+++ b/test/csuite/wt3120_filesys/main.c
@@ -80,13 +80,13 @@ main(int argc, char *argv[])
testutil_check(session->open_cursor(session, opts->uri, NULL, NULL,
&cursor));
testutil_check(cursor->next(cursor));
- cursor->get_key(cursor, &kstr);
- cursor->get_value(cursor, &vstr);
+ testutil_check(cursor->get_key(cursor, &kstr));
+ testutil_check(cursor->get_value(cursor, &vstr));
testutil_assert(strcmp(kstr, "a") == 0);
testutil_assert(strcmp(vstr, "0") == 0);
testutil_check(cursor->next(cursor));
- cursor->get_key(cursor, &kstr);
- cursor->get_value(cursor, &vstr);
+ testutil_check(cursor->get_key(cursor, &kstr));
+ testutil_check(cursor->get_value(cursor, &vstr));
testutil_assert(strcmp(kstr, "b") == 0);
testutil_assert(strcmp(vstr, "1") == 0);
testutil_assert(cursor->next(cursor) == WT_NOTFOUND);