diff options
author | Siri Hansen <[email protected]> | 2011-11-25 09:24:52 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-11-25 09:24:52 +0100 |
commit | fa8edf9882b0b1213018a8421f7c779be3001abc (patch) | |
tree | 82ad03dbc9afd505dbf10b95dcc115fc4e161b95 /lib/sasl/test | |
parent | 168787fcfb1f8311d3e4e57821b7cddebe2d6ba2 (diff) | |
parent | b345a094c105329f7bf83fb75f4c13dd31399dd9 (diff) | |
download | otp-fa8edf9882b0b1213018a8421f7c779be3001abc.tar.gz otp-fa8edf9882b0b1213018a8421f7c779be3001abc.tar.bz2 otp-fa8edf9882b0b1213018a8421f7c779be3001abc.zip |
Merge branch 'siri/sasl/no-warn-missing-sasl/OTP-9738'
* siri/sasl/no-warn-missing-sasl/OTP-9738:
Add +no_warn_sasl flag when compiling start_clean.rel
Add option no_warn_sasl to systools:make_script
Diffstat (limited to 'lib/sasl/test')
-rw-r--r-- | lib/sasl/test/systools_SUITE.erl | 3 |
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. |