test: don't use _O_RDWR, windows-ism

This commit is contained in:
Ben Noordhuis 2011-11-05 03:07:36 +01:00
parent cee56c96f8
commit 9dc67f5e61

View File

@ -1435,7 +1435,7 @@ TEST_IMPL(fs_file_open_append) {
ASSERT(close_req.result != -1);
uv_fs_req_cleanup(&close_req);
r = uv_fs_open(loop, &open_req1, "test_file", _O_RDWR | O_APPEND, 0, NULL);
r = uv_fs_open(loop, &open_req1, "test_file", O_RDWR | O_APPEND, 0, NULL);
ASSERT(r != -1);
ASSERT(open_req1.result != -1);
uv_fs_req_cleanup(&open_req1);
@ -1473,4 +1473,4 @@ TEST_IMPL(fs_file_open_append) {
unlink("test_file");
return 0;
}
}