From d1d585e208bf60729e0c064be7f419ead02875b8 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 9 Nov 2010 10:22:48 +1100 Subject: s4-test: make sure the selftest prefix exists Autobuild-User: Andrew Tridgell Autobuild-Date: Tue Nov 9 00:05:22 UTC 2010 on sn-devel-104 --- source4/selftest/wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4') diff --git a/source4/selftest/wscript b/source4/selftest/wscript index 19f7a0bb93..a5fafa3d6a 100644 --- a/source4/selftest/wscript +++ b/source4/selftest/wscript @@ -154,6 +154,9 @@ def cmd_testonly(opt): if os.path.exists(st_done): os.unlink(st_done) + if not os.path.isdir(env.SELFTEST_PREFIX): + 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} %s/../selftest/selftest.pl --prefix=${SELFTEST_PREFIX} --builddir=. --srcdir=. --exclude=./selftest/skip --testlist="${PYTHON} ./selftest/tests.py|" ${OPTIONS} --socket-wrapper ${TESTS} && touch ${SELFTEST_PREFIX}/st_done) | ${FILTER_OPTIONS} | tee ${SELFTEST_PREFIX}/subunit' % (os.getcwd()) if os.environ.get('RUN_FROM_BUILD_FARM') is None and not Options.options.FILTERED_SUBUNIT: -- cgit