diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-07-15 15:01:43 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-07-15 15:01:43 +1000 |
commit | 13a498939a7caf574635430271369c214e227a97 (patch) | |
tree | fd46795c30671291cb8cb7156dfa9167dc82cf35 | |
parent | b49c30dd39ba4705fc9fd8fc11650e9e1387c85c (diff) | |
download | samba-13a498939a7caf574635430271369c214e227a97.tar.gz samba-13a498939a7caf574635430271369c214e227a97.tar.bz2 samba-13a498939a7caf574635430271369c214e227a97.zip |
Fix 'make gdbtest-enb' and the GDB_PROVISION option.
(This used to be commit 79c4d8e2fabc9c33d978c064b9c01ca45e463ced)
-rw-r--r-- | source4/selftest/config.mk | 2 | ||||
-rw-r--r-- | source4/selftest/target/Samba4.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/selftest/config.mk b/source4/selftest/config.mk index 871c14898f..5503a42cdd 100644 --- a/source4/selftest/config.mk +++ b/source4/selftest/config.mk @@ -78,4 +78,4 @@ gdbtest-all:: everything gdbtest-env:: everything SMBD_VALGRIND="xterm -n smbd -e $(srcdir)/script/gdb_run $(LD_LIBPATH_OVERRIDE)" \ - $(SELFTEST) $(SELFTEST_NOSLOW_OPTS)--socket-wrapper --testenv + $(SELFTEST) $(SELFTEST_NOSLOW_OPTS) --socket-wrapper --testenv diff --git a/source4/selftest/target/Samba4.pm b/source4/selftest/target/Samba4.pm index 6283a3799a..2347dfc742 100644 --- a/source4/selftest/target/Samba4.pm +++ b/source4/selftest/target/Samba4.pm @@ -703,7 +703,7 @@ nogroup:x:65534:nobody push (@provision_options, "NSS_WRAPPER_PASSWD=\"$nsswrap_passwd\""); push (@provision_options, "NSS_WRAPPER_GROUP=\"$nsswrap_group\""); if (defined($ENV{GDB_PROVISION})) { - push (@provision_options, "gdb --args"); + push (@provision_options, "gdb --args python"); } if (defined($ENV{VALGRIND_PROVISION})) { push (@provision_options, "valgrind"); |