diff options
author | Siri Hansen <[email protected]> | 2014-04-22 14:07:14 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2014-04-22 14:07:14 +0200 |
commit | 4969c429a9d03c5bafc9633ec186f2fe08b953b8 (patch) | |
tree | 76a789738446ac220b56b5e627ce04cbff7d0cf6 /lib/reltool/test/reltool_server_SUITE.erl | |
parent | 3ecbc26f21e876313f569f35a23b590d985943a0 (diff) | |
parent | 5ce2b6588eb2a237e757265a83de28d997a13c3d (diff) | |
download | otp-4969c429a9d03c5bafc9633ec186f2fe08b953b8.tar.gz otp-4969c429a9d03c5bafc9633ec186f2fe08b953b8.tar.bz2 otp-4969c429a9d03c5bafc9633ec186f2fe08b953b8.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/reltool/test/reltool_server_SUITE.erl')
-rw-r--r-- | lib/reltool/test/reltool_server_SUITE.erl | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/reltool/test/reltool_server_SUITE.erl b/lib/reltool/test/reltool_server_SUITE.erl index bfe5d39d53..b3b7afd1a9 100644 --- a/lib/reltool/test/reltool_server_SUITE.erl +++ b/lib/reltool/test/reltool_server_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2009-2013. All Rights Reserved. +%% Copyright Ericsson AB 2009-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -1205,14 +1205,9 @@ create_slim(Config) -> RootDir = code:root_dir(), Erl = filename:join([RootDir, "bin", "erl"]), - EscapedQuote = - case os:type() of - {win32,_} -> "\\\""; - _ -> "\"" - end, Args = ["-boot_var", "RELTOOL_EXT_LIB", TargetLibDir, "-boot", filename:join(TargetRelVsnDir,RelName), - "-sasl", "releases_dir", EscapedQuote++TargetRelDir++EscapedQuote], + "-sasl", "releases_dir", "\""++TargetRelDir++"\""], {ok, Node} = ?msym({ok, _}, start_node(?NODE_NAME, Erl, Args)), ?msym(RootDir, rpc:call(Node, code, root_dir, [])), wait_for_app(Node,sasl,50), |