aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-02-27 14:38:01 +0100
committerBjörn Gustavsson <[email protected]>2017-04-12 14:23:54 +0200
commit74cf5ae0d850cf38fab24edf2c3f26b860b080ed (patch)
treecbd135baef00cd0f633e3e90b470b232e18db30e /lib/sasl
parent19e9249d960a5b15b4e222efdcb96efbe122853e (diff)
downloadotp-74cf5ae0d850cf38fab24edf2c3f26b860b080ed.tar.gz
otp-74cf5ae0d850cf38fab24edf2c3f26b860b080ed.tar.bz2
otp-74cf5ae0d850cf38fab24edf2c3f26b860b080ed.zip
Don't create absolute path names in tar files
We should not assume that erl_tar will allow unpacking tar files with absolute path names for archive members.
Diffstat (limited to 'lib/sasl')
-rw-r--r--lib/sasl/test/systools_SUITE.erl16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/sasl/test/systools_SUITE.erl b/lib/sasl/test/systools_SUITE.erl
index 0c98232467..1a8bd3f607 100644
--- a/lib/sasl/test/systools_SUITE.erl
+++ b/lib/sasl/test/systools_SUITE.erl
@@ -87,25 +87,25 @@ end_per_group(_GroupName, Config) ->
init_per_suite(Config) when is_list(Config) ->
+ %% To use in end_per_testcase
+ Path = code:get_path(),
+ {ok,Cwd} = file:get_cwd(),
+
%% Make of copy of the data directory.
DataDir = ?datadir,
PrivDir = ?privdir,
CopyDir = fname(PrivDir, "datacopy"),
+ ok = file:make_dir(CopyDir),
TarFile = fname(PrivDir, "datacopy.tgz"),
- {ok, Tar} = erl_tar:open(TarFile, [write, compressed]),
- ok = erl_tar:add(Tar, DataDir, CopyDir, [compressed]),
- ok = erl_tar:close(Tar),
- ok = erl_tar:extract(TarFile, [compressed]),
+ ok = file:set_cwd(DataDir),
+ ok = erl_tar:create(TarFile, ["."], [compressed]),
+ ok = erl_tar:extract(TarFile, [compressed, {cwd,CopyDir}]),
ok = file:delete(TarFile),
%% Compile source files in the copy directory.
Sources = filelib:wildcard(fname([CopyDir,'*','*','*','*','*.erl'])),
lists:foreach(fun compile_source/1, Sources),
- %% To use in end_per_testcase
- Path = code:get_path(),
- {ok,Cwd} = file:get_cwd(),
-
[{copy_dir, CopyDir}, {cwd,Cwd}, {path,Path} | Config].
compile_source(File) ->