From 0265837ee8ab98b00c18411bee3770075e27f900 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 22 Jun 2012 09:17:13 +0930 Subject: ntdb: respect TDB_NO_FSYNC flag for 'make test' This reduces test time from 31 seconds to 6, on my laptop. Signed-off-by: Rusty Russell --- lib/ntdb/test/run-64-bit-tdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ntdb/test/run-64-bit-tdb.c') diff --git a/lib/ntdb/test/run-64-bit-tdb.c b/lib/ntdb/test/run-64-bit-tdb.c index 582deb2234..552866f8ba 100644 --- a/lib/ntdb/test/run-64-bit-tdb.c +++ b/lib/ntdb/test/run-64-bit-tdb.c @@ -29,8 +29,8 @@ int main(int argc, char *argv[]) struct ntdb_used_record rec; ntdb_off_t off; - ntdb = ntdb_open("run-64-bit-ntdb.ntdb", flags[i], - O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr); + ntdb = ntdb_open("run-64-bit-ntdb.ntdb", flags[i]|MAYBE_NOSYNC, + O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr); ok1(ntdb); if (!ntdb) continue; -- cgit