diff options
author | Lukas Larsson <[email protected]> | 2014-04-08 17:46:52 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-04-10 09:42:34 +0200 |
commit | 9633e0ebc304cb003b3ef06433e6b7ccdc9e983a (patch) | |
tree | 3e751d6bae3ea3bdb1b1841a60c4dabf02a10854 /erts/emulator/test | |
parent | 07b8f441ca711f9812fad9e9115bab3c3aa92f79 (diff) | |
download | otp-9633e0ebc304cb003b3ef06433e6b7ccdc9e983a.tar.gz otp-9633e0ebc304cb003b3ef06433e6b7ccdc9e983a.tar.bz2 otp-9633e0ebc304cb003b3ef06433e6b7ccdc9e983a.zip |
win32: Fix quoting of paths
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/port_SUITE.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/erts/emulator/test/port_SUITE.erl b/erts/emulator/test/port_SUITE.erl index e01b2f253b..738d60b8a4 100644 --- a/erts/emulator/test/port_SUITE.erl +++ b/erts/emulator/test/port_SUITE.erl @@ -1405,6 +1405,12 @@ spawn_executable(Config) when is_list(Config) -> run_echo_args(SpaceDir,[ExactFile2,"hello world","dlrow olleh"]), [ExactFile2,"hello world","dlrow olleh"] = run_echo_args(SpaceDir,[binary, ExactFile2,"hello world","dlrow olleh"]), + + [ExactFile2,"hello \"world\"","\"dlrow\" olleh"] = + run_echo_args(SpaceDir,[binary, ExactFile2,"hello \"world\"","\"dlrow\" olleh"]), + [ExactFile2,"hello \"world\"","\"dlrow\" olleh"] = + run_echo_args(SpaceDir,[binary, ExactFile2,"hello \"world\"","\"dlrow\" olleh"]), + [ExactFile2] = run_echo_args(SpaceDir,[default]), [ExactFile2,"hello world","dlrow olleh"] = run_echo_args(SpaceDir,[switch_order,ExactFile2,"hello world", |