Commit 951dfa34 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Remove tests that don't work on Windows.

On Windows, a filename cannot contain backslashes, because a backslash
is used directory separator. Remove tests I added in commit 9c4f5192
that tried to do that. We could perhaps use a SKIP block to only skip
them on Windows, but I'm not sure how exactly to formulate that, so just
remove the tests to make the buildfarm green again.

Per buildfarm.
parent 3836d4b6
...@@ -46,16 +46,10 @@ sub run_test ...@@ -46,16 +46,10 @@ sub run_test
append_to_file append_to_file
"$test_standby_datadir/tst_standby_dir/standby_file4 with double\"quote", "$test_standby_datadir/tst_standby_dir/standby_file4 with double\"quote",
"in standby4"; "in standby4";
append_to_file
"$test_standby_datadir/tst_standby_dir/standby_file5 with back\\slash",
"in standby5";
append_to_file
"$test_standby_datadir/tst_standby_dir/standby_file6_with_backslash\\\"and_double-quote",
"in standby6";
mkdir "$test_standby_datadir/tst_standby_dir/standby_subdir/"; mkdir "$test_standby_datadir/tst_standby_dir/standby_subdir/";
append_to_file append_to_file
"$test_standby_datadir/tst_standby_dir/standby_subdir/standby_file7", "$test_standby_datadir/tst_standby_dir/standby_subdir/standby_file5",
"in standby7"; "in standby5";
mkdir "$test_primary_datadir/tst_primary_dir"; mkdir "$test_primary_datadir/tst_primary_dir";
append_to_file "$test_primary_datadir/tst_primary_dir/primary_file1", append_to_file "$test_primary_datadir/tst_primary_dir/primary_file1",
...@@ -94,10 +88,8 @@ sub run_test ...@@ -94,10 +88,8 @@ sub run_test
"$test_primary_datadir/tst_standby_dir/standby_file2", "$test_primary_datadir/tst_standby_dir/standby_file2",
"$test_primary_datadir/tst_standby_dir/standby_file3 with 'quotes'", "$test_primary_datadir/tst_standby_dir/standby_file3 with 'quotes'",
"$test_primary_datadir/tst_standby_dir/standby_file4 with double\"quote", "$test_primary_datadir/tst_standby_dir/standby_file4 with double\"quote",
"$test_primary_datadir/tst_standby_dir/standby_file5 with back\\slash",
"$test_primary_datadir/tst_standby_dir/standby_file6_with_backslash\\\"and_double-quote",
"$test_primary_datadir/tst_standby_dir/standby_subdir", "$test_primary_datadir/tst_standby_dir/standby_subdir",
"$test_primary_datadir/tst_standby_dir/standby_subdir/standby_file7" "$test_primary_datadir/tst_standby_dir/standby_subdir/standby_file5"
], ],
"file lists match"); "file lists match");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment