diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-13 10:43:44 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-13 11:00:04 +0000 |
commit | d0293428fe2e95cccfcaf3df47f234ac3e794d2e (patch) | |
tree | df2634bb6311ed176aa80a8a374ebd525cd6ab3d /script | |
parent | 72de3e698b651da08a542864bb94b4e1b35dd935 (diff) | |
download | samba-d0293428fe2e95cccfcaf3df47f234ac3e794d2e.tar.gz |
autobuild: do make install after make test
this ensures that commits that break uninstalled testing get caught by
autobuild in future
Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>
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 6691437c233..cb3e9595bde 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -26,8 +26,8 @@ tasks = { "source4" : [ ("configure", "./configure.developer ${PREFIX}", "text/plain"), ("make", "make -j", "text/plain"), - ("install", "make install", "text/plain"), - ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain") ], + ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"), + ("install", "make install", "text/plain") ], "source4/lib/ldb" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), ("make", "make -j", "text/plain"), |