diff options
author | Siri Hansen <[email protected]> | 2013-05-21 18:21:06 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2013-05-21 18:21:06 +0200 |
commit | 5ad4e9787c072ae8cea1ed1c9f2212551b307267 (patch) | |
tree | cfb940ea4b1d1510fe922713dc6ec2d796d5cfeb /lib/sasl/test/systools_SUITE.erl | |
parent | f5592219f5fb7f69b94b8c60e0cdf4a503a5899b (diff) | |
download | otp-5ad4e9787c072ae8cea1ed1c9f2212551b307267.tar.gz otp-5ad4e9787c072ae8cea1ed1c9f2212551b307267.tar.bz2 otp-5ad4e9787c072ae8cea1ed1c9f2212551b307267.zip |
[sasl] Clean priv_dir after systools_SUITE
Some files with icky names (unicode) can not be deleted with the
cleanup scripts after daily tests. Therefore it is better to clean up
directly from the erlang node after test is run.
Diffstat (limited to 'lib/sasl/test/systools_SUITE.erl')
-rw-r--r-- | lib/sasl/test/systools_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sasl/test/systools_SUITE.erl b/lib/sasl/test/systools_SUITE.erl index 5e95b13077..1cc9eb6986 100644 --- a/lib/sasl/test/systools_SUITE.erl +++ b/lib/sasl/test/systools_SUITE.erl @@ -137,9 +137,9 @@ compile_source(File) -> ok = file:write_file(OutFileTemp, Code), file:rename(OutFileTemp, OutFile). -end_per_suite(Conf) when is_list(Conf) -> - %% Nothing. - Conf. +end_per_suite(Config) when is_list(Config) -> + rh_test_lib:clean_dir(?privdir), + Config. init_per_testcase(link_tar, Config) -> case os:type() of |