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/api-83-openhook.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/ntdb/test/api-83-openhook.c') diff --git a/lib/ntdb/test/api-83-openhook.c b/lib/ntdb/test/api-83-openhook.c index 666b4b8d8f..31c789ead8 100644 --- a/lib/ntdb/test/api-83-openhook.c +++ b/lib/ntdb/test/api-83-openhook.c @@ -60,15 +60,15 @@ int main(int argc, char *argv[]) plan_tests(sizeof(flags) / sizeof(flags[0]) * 13); for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) { /* Create it */ - ntdb = ntdb_open("run-83-openhook.ntdb", flags[i], - O_RDWR|O_CREAT|O_TRUNC, 0600, NULL); + ntdb = ntdb_open("run-83-openhook.ntdb", flags[i]|MAYBE_NOSYNC, + O_RDWR|O_CREAT|O_TRUNC, 0600, NULL); ok1(ntdb); ok1(ntdb_store(ntdb, key, key, NTDB_REPLACE) == 0); ntdb_close(ntdb); /* Now, open with CIF, should clear it. */ - ntdb = ntdb_open("run-83-openhook.ntdb", flags[i], - O_RDWR, 0, &cif); + ntdb = ntdb_open("run-83-openhook.ntdb", flags[i]|MAYBE_NOSYNC, + O_RDWR, 0, &cif); ok1(ntdb); ok1(!ntdb_exists(ntdb, key)); ok1(ntdb_store(ntdb, key, key, NTDB_REPLACE) == 0); -- cgit