summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/test/test_shared_random.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/test/test_shared_random.c b/src/test/test_shared_random.c
index 4f05e75783..d6787e4f45 100644
--- a/src/test/test_shared_random.c
+++ b/src/test/test_shared_random.c
@@ -638,11 +638,7 @@ test_state_load_from_disk(void *arg)
/* Try to load the directory itself. Should fail. */
ret = disk_state_load_from_disk_impl(dir);
-#ifdef _WIN32
- tt_int_op(ret, OP_EQ, -EACCES);
-#else
- tt_int_op(ret, OP_EQ, -EISDIR);
-#endif
+ tt_int_op(ret, OP_LT, 0);
/* State should be non-existent at this point. */
the_sr_state = get_sr_state();