diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2015-06-01 16:20:04 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-06-01 16:20:04 +0930 |
commit | d58e2fd2a63dfea5338a1637f9bb89500ad0406d (patch) | |
tree | 2b21d9c7b5d3fe351b9afe10edc9607902f92b0e | |
parent | fc06310d94a1e499307105b05097675bc7358cf1 (diff) |
ntdb: don't overlap with test filenames.
This may have been causing a travis failure. Let's see!
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
-rw-r--r-- | ccan/ntdb/test/api-20-alloc-attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ccan/ntdb/test/api-20-alloc-attr.c b/ccan/ntdb/test/api-20-alloc-attr.c index 1abdcf6a..868764fa 100644 --- a/ccan/ntdb/test/api-20-alloc-attr.c +++ b/ccan/ntdb/test/api-20-alloc-attr.c @@ -81,7 +81,7 @@ int main(int argc, char *argv[]) for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) { curr_ntdb = NULL; curr_file = NULL; - ntdb = ntdb_open("run-12-store.ntdb", flags[i]|MAYBE_NOSYNC, + ntdb = ntdb_open("run-20-alloc-attr.ntdb", flags[i]|MAYBE_NOSYNC, O_RDWR|O_CREAT|O_TRUNC, 0600, &alloc_attr); ok1(ntdb); if (!ntdb) |