Skip to content

Commit

Permalink
script/autobuild.py: make sure --nonshared-binary=smbtorture,smbd/smb…
Browse files Browse the repository at this point in the history
…d keeps working

- It's very useful to have a static smbtorture binary that can be copied arround.
- It's sometimes also useful to have a static smbd binary in order avoid
  runtime overhead via do_lookup_x() (in ld*.so), note that

Signed-off-by: Stefan Metzmacher <[email protected]>
Reviewed-by: Ralph Boehme <[email protected]>

Autobuild-User(master): Ralph Böhme <[email protected]>
Autobuild-Date(master): Thu Aug 20 19:10:19 CEST 2015 on sn-devel-104
  • Loading branch information
metze-samba authored and slowfranklin committed Aug 20, 2015
1 parent 86fa1d9 commit ba4c9bd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion script/autobuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,12 @@
# retry without any required modules
("none-distclean", "make distclean", "text/plain"),
("none-configure", samba_libs_configure_samba + " --with-static-modules=!FORCED,!DEFAULT --with-shared-modules=!FORCED,!DEFAULT", "text/plain"),
("none-make", "make", "text/plain")],
("none-make", "make", "text/plain"),

# retry with nonshared smbd and smbtorture
("nonshared-distclean", "make distclean", "text/plain"),
("nonshared-configure", samba_libs_configure_base + " --bundled-libraries=talloc,tdb,pytdb,ldb,pyldb,tevent,pytevent --with-static-modules=ALL --nonshared-binary=smbtorture,smbd/smbd", "text/plain"),
("nonshared-make", "make", "text/plain")],

"ldb" : [
("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
Expand Down

0 comments on commit ba4c9bd

Please sign in to comment.