diff options
author | Dan Gudmundsson <[email protected]> | 2013-02-19 16:14:49 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2013-05-20 13:35:44 +0200 |
commit | 46d99ecfdc8b5d1f6d35c415d020eca5cd6130e1 (patch) | |
tree | 162987e1b0f52449926672f7533baed1c9612dac /erts/test | |
parent | b3152d85b1f0187d82270a607006494a04c98546 (diff) | |
download | otp-46d99ecfdc8b5d1f6d35c415d020eca5cd6130e1.tar.gz otp-46d99ecfdc8b5d1f6d35c415d020eca5cd6130e1.tar.bz2 otp-46d99ecfdc8b5d1f6d35c415d020eca5cd6130e1.zip |
Quote windows paths with spaces
Diffstat (limited to 'erts/test')
-rw-r--r-- | erts/test/nt_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/test/nt_SUITE.erl b/erts/test/nt_SUITE.erl index 7580a7b364..2e4184e7f1 100644 --- a/erts/test/nt_SUITE.erl +++ b/erts/test/nt_SUITE.erl @@ -74,7 +74,7 @@ end_per_testcase(_Func, Config) -> ok. erlsrv() -> - os:find_executable(erlsrv). + "\"" ++ os:find_executable(erlsrv) ++ "\"". recv_prog_output(Port) -> @@ -542,7 +542,7 @@ get_current_procs(Config) -> ?line erl_parse:parse_term(Tok). nt_info(Config) when is_list(Config) -> - ?line filename:join(?config(data_dir, Config), "nt_info"). + ?line "\"" ++ filename:join(?config(data_dir, Config), "nt_info") ++ "\"". logdir(Config) -> |