diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-01 13:07:04 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-01 13:08:22 -0700 |
commit | 0111e80ea9f7a4d833771f349e5ce05025f7276c (patch) | |
tree | d135dce40f56fa53184f2d9b3eaa2f6a33f71a9a /script | |
parent | b75c1f57c2a59bffbe4bef7ef7207758466be7bb (diff) | |
download | samba-0111e80ea9f7a4d833771f349e5ce05025f7276c.tar.gz samba-0111e80ea9f7a4d833771f349e5ce05025f7276c.tar.bz2 samba-0111e80ea9f7a4d833771f349e5ce05025f7276c.zip |
autobuild: revert a bit more of the subunit changes
still not quite right - we can enable this again once its fully tested
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index f131cc199b..9c1520a2ca 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -22,12 +22,12 @@ tasks = { ("make basics", "make basics", "text/plain"), ("make", "make -j 4 everything", "text/plain"), # don't use too many processes ("install", "make install", "text/plain"), - ("test", "TDB_NO_FSYNC=1 make subunit-test FAIL_IMMEDIATELY=1", "text/x-subunit") ], + ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain") ], "source4" : [ ("configure", "./configure.developer ${PREFIX}", "text/plain"), ("make", "make -j", "text/plain"), ("install", "make install", "text/plain"), - ("test", "TDB_NO_FSYNC=1 make subunit-test FAIL_IMMEDIATELY=1", "text/x-subunit") ], + ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain") ], "source4/lib/ldb" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), ("make", "make -j", "text/plain"), |