diff options
author | Andreas Schneider <asn@samba.org> | 2019-11-22 15:23:35 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2020-03-09 23:42:26 +0000 |
commit | 54f26cfcf2587a2b1d97f466a886fa89a116eea1 (patch) | |
tree | e43134787d5ed9864577fd0e8e42e8fdd1786e70 /script | |
parent | 609c9903473b139fdf1b2ed02b9c93b648eeea8c (diff) | |
download | samba-54f26cfcf2587a2b1d97f466a886fa89a116eea1.tar.gz |
autobuild: Run the none env in the samba-o3 build
This includes tests which should make sure that certain code is not
optimized away, like memset_s().
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Mon Mar 9 23:42:26 UTC 2020 on sn-devel-184
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index 68ce850740e..dc46bcdd129 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -544,7 +544,8 @@ tasks = { ("random-sleep", random_sleep(300, 900)), ("configure", "ADDITIONAL_CFLAGS='-O3 -Wp,-D_FORTIFY_SOURCE=2' ./configure.developer --with-selftest-prefix=./bin/ab --abi-check-disable" + samba_configure_params), ("make", "make -j"), - ("test", make_test(cmd='make quicktest', include_envs=["ad_dc"])), + ("test", make_test(cmd='make test', include_envs=["none"])), + ("quicktest", make_test(cmd='make quicktest', include_envs=["ad_dc"])), ("lcov", LCOV_CMD), ("install", "make install"), ("check-clean-tree", "script/clean-source-tree.sh"), @@ -614,14 +615,6 @@ tasks = { ("allshared-make", "make -j"), ], - "samba-none-env": [ - ("random-sleep", random_sleep(1, 1)), - ("configure", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params), - ("make", "make -j"), - ("test", make_test(include_envs=["none"])), - ("lcov", LCOV_CMD), - ], - "samba-static": [ ("random-sleep", random_sleep(1, 1)), # build with all modules static |