Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
minor bugfixes in regression tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Chia-Che Tsai committed May 20, 2015
1 parent c98bda2 commit cb687ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Pal/regression/Directory.c
Expand Up @@ -36,7 +36,7 @@ int main (int argc, char ** argv, char ** envp)
DkObjectClose(dir2);
}

PAL_HANDLE dir3 = DkStreamOpen("dir:../rtest/dir_exist.tmp",
PAL_HANDLE dir3 = DkStreamOpen("dir:../regression/dir_exist.tmp",
PAL_ACCESS_RDONLY, 0, 0, 0);
if (dir3) {
pal_printf("Directory Open Test 3 OK\n");
Expand Down
2 changes: 1 addition & 1 deletion Pal/regression/File.c
Expand Up @@ -70,7 +70,7 @@ int main (int argc, char ** argv, char ** envp)
DkObjectClose(file2);
}

PAL_HANDLE file3 = DkStreamOpen("file:../rtest/file_exist.tmp",
PAL_HANDLE file3 = DkStreamOpen("file:../regression/file_exist.tmp",
PAL_ACCESS_RDWR, 0, 0, 0);
if (file3) {
pal_printf("File Open Test 3 OK\n");
Expand Down

0 comments on commit cb687ea

Please sign in to comment.