diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-22 09:44:36 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-22 07:35:16 +0200 |
commit | f7f6992c1e6ee8ac4a55c2fddf169ac695362036 (patch) | |
tree | e90b7eb654055d80d230138950cc5fbb92d27dee /lib/tdb/wscript | |
parent | 0265837ee8ab98b00c18411bee3770075e27f900 (diff) | |
download | samba-f7f6992c1e6ee8ac4a55c2fddf169ac695362036.tar.gz samba-f7f6992c1e6ee8ac4a55c2fddf169ac695362036.tar.bz2 samba-f7f6992c1e6ee8ac4a55c2fddf169ac695362036.zip |
autobuild: always set TDB_NO_FSYNC.
Then we unset it inside the tdb test target itself. This means that
new code can't accidently forget it, and we can set it in the
'buildnice' script on sn-devel, for example.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/tdb/wscript')
-rw-r--r-- | lib/tdb/wscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript index e28e43acac..01b4892fb0 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -185,6 +185,10 @@ def testonly(ctx): if not os.path.exists(link): os.symlink(os.path.abspath(os.path.join(env.cwd, 'test')), link) + # unset TDB_NO_FSYNC, since we want to test sync code. + if 'TDB_NO_FSYNC' in os.environ: + del os.environ['TDB_NO_FSYNC'] + for f in 'tdb1-run-3G-file', 'tdb1-run-bad-tdb-header', 'tdb1-run', 'tdb1-run-check', 'tdb1-run-corrupt', 'tdb1-run-die-during-transaction', 'tdb1-run-endian', 'tdb1-run-incompatible', 'tdb1-run-nested-transactions', 'tdb1-run-nested-traverse', 'tdb1-run-no-lock-during-traverse', 'tdb1-run-oldhash', 'tdb1-run-open-during-transaction', 'tdb1-run-readonly-check', 'tdb1-run-rwlock-check', 'tdb1-run-summary', 'tdb1-run-transaction-expand', 'tdb1-run-traverse-in-transaction', 'tdb1-run-wronghash-fail', 'tdb1-run-zero-append': cmd = "cd " + testdir + " && " + os.path.abspath(os.path.join(Utils.g_module.blddir, f)) + " > test-output 2>&1" print("..." + f) |