diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-15 12:41:22 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-16 11:43:04 +0200 |
commit | 4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2 (patch) | |
tree | 5d3d75728d97688bb99f2200613ff46c66bfc6b5 /source3/selftest/wscript | |
parent | cfb44f63a4eadfd34c0cf7b003b677e43284376f (diff) | |
download | samba-4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2.tar.gz samba-4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2.tar.bz2 samba-4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2.zip |
selftest: Remove duplication between BUILDIR and BINDIR
Just have BINDIR, and have it default to ./bin
Andrew Bartlett
Diffstat (limited to 'source3/selftest/wscript')
-rw-r--r-- | source3/selftest/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/selftest/wscript b/source3/selftest/wscript index 05d0d37238..db9233049f 100644 --- a/source3/selftest/wscript +++ b/source3/selftest/wscript @@ -166,7 +166,7 @@ def cmd_testonly(opt): os.makedirs(env.SELFTEST_PREFIX, int('755', 8)) # We use the full path rather than relative path because it cause problems on some plateforms (ie. solaris 8). - cmd = '(${PERL} ${srcdir}/selftest/selftest.pl --target=samba3 --prefix=${SELFTEST_PREFIX} --builddir=. --srcdir=${srcdir} --exclude=${srcdir}/source3/selftest/skip --testlist="${srcdir}/source3/selftest/tests.py|" ${OPTIONS} --socket-wrapper ${TESTS} && touch ${SELFTEST_PREFIX}/st_done) | ${FILTER_OPTIONS} | tee ${SELFTEST_PREFIX}/subunit' + cmd = '(${PERL} ${srcdir}/selftest/selftest.pl --target=samba3 --prefix=${SELFTEST_PREFIX} --srcdir=${srcdir} --exclude=${srcdir}/source3/selftest/skip --testlist="${srcdir}/source3/selftest/tests.py|" ${OPTIONS} --socket-wrapper ${TESTS} && touch ${SELFTEST_PREFIX}/st_done) | ${FILTER_OPTIONS} | tee ${SELFTEST_PREFIX}/subunit' if os.environ.get('RUN_FROM_BUILD_FARM') is None and not Options.options.FILTERED_SUBUNIT: cmd += ' | ${FORMAT_TEST_OUTPUT}' else: |