Skip to content

Commit

Permalink
test: add windows-only uv_fs_stat regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Jan 28, 2012
1 parent 74cff55 commit f9b478c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test-fs.c
Expand Up @@ -1293,6 +1293,9 @@ TEST_IMPL(fs_stat_root) {
int r;
uv_loop_t* loop = uv_default_loop();

r = uv_fs_stat(loop, &stat_req, "\\", NULL);
ASSERT(r == 0);

r = uv_fs_stat(loop, &stat_req, "c:\\", NULL);
ASSERT(r == 0);

Expand Down

0 comments on commit f9b478c

Please sign in to comment.