aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl/test/systools_SUITE.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2011-11-23 15:19:35 +0100
committerSiri Hansen <[email protected]>2011-11-23 15:31:07 +0100
commit3b024fc8ab28212f907df654f0718f9fd0b9c7fd (patch)
tree06ae5cd1470a7aff73908b1c78c17005a58b9417 /lib/sasl/test/systools_SUITE.erl
parent02c869c58f226e8ea16de3d35e0e53d023376cb7 (diff)
downloadotp-3b024fc8ab28212f907df654f0718f9fd0b9c7fd.tar.gz
otp-3b024fc8ab28212f907df654f0718f9fd0b9c7fd.tar.bz2
otp-3b024fc8ab28212f907df654f0718f9fd0b9c7fd.zip
Add option no_warn_sasl to systools:make_script
This option will suppress the 'missing-sasl' warning which otherwise is issued when compiling a .rel file which does not include the sasl application.
Diffstat (limited to 'lib/sasl/test/systools_SUITE.erl')
-rw-r--r--lib/sasl/test/systools_SUITE.erl3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sasl/test/systools_SUITE.erl b/lib/sasl/test/systools_SUITE.erl
index 892c4994e8..beb1e48ca7 100644
--- a/lib/sasl/test/systools_SUITE.erl
+++ b/lib/sasl/test/systools_SUITE.erl
@@ -411,6 +411,9 @@ no_sasl_script(Config) when is_list(Config) ->
?line {ok, _ , [{warning,missing_sasl}]} =
systools:make_script(LatestName,[{path, P},silent]),
+ ?line {ok, _ , []} =
+ systools:make_script(LatestName,[{path, P},silent, no_warn_sasl]),
+
?line ok = file:set_cwd(OldDir),
ok.