diff --git a/test/filesystem/test_filesystem.f90 b/test/filesystem/test_filesystem.f90 index 373da053c..44588519b 100644 --- a/test/filesystem/test_filesystem.f90 +++ b/test/filesystem/test_filesystem.f90 @@ -22,7 +22,7 @@ subroutine collect_filesystem(testsuite) new_unittest("fs_file_not_exists", fs_file_not_exists, should_fail=.true.), & new_unittest("fs_file_exists", fs_file_exists), & new_unittest("fs_current_dir_exists", fs_current_dir_exists), & - new_unittest("fs_use_path_separator", fs_path_separator), & + new_unittest("fs_use_path_separator", fs_use_path_separator), & new_unittest("fs_run_invalid_command", fs_run_invalid_command, should_fail=.true.), & new_unittest("fs_run_with_invalid_option", fs_run_with_invalid_option, should_fail=.true.), & new_unittest("fs_run_valid_command", fs_run_valid_command), & @@ -57,7 +57,7 @@ subroutine fs_path_separator(error) call get_environment_variable('HOMEDRIVE', value, length, stat) if (stat == 0 .and. length > 0) then - call check(error, path_separator == '\\', "Path separator should be set for Windows.") + call check(error, path_separator == '\', "Path separator should be set for Windows.") else call check(error, path_separator == '/', "Path separator should not be set for non-Windows.") end if