diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-07-21 19:56:22 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-07-21 19:56:22 -0400 |
commit | 2c4f5b4bc5385b37d062451642abd384536eeeb3 (patch) | |
tree | b4ca9e7dbbdeb894974d29babdaf5ce39f2ca84d /src | |
parent | 1f115d98b984c80e635392aed10cc6185d1f8f4b (diff) | |
download | postgresql-2c4f5b4bc5385b37d062451642abd384536eeeb3.tar.gz postgresql-2c4f5b4bc5385b37d062451642abd384536eeeb3.zip |
Use --nosync during make check's initdb call.
We left this out of commit b966dd6c4228d696b291c1cdcb5ab8c8475fefa8
so as to get some more buildfarm testing of the new fsync code in initdb.
But since no problems have turned up, it's probably time to save the
cycles.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/pg_regress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index 7d89318b270..81e7b69231b 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -2150,7 +2150,7 @@ regression_main(int argc, char *argv[], init_function ifunc, test_function tfunc /* initdb */ header(_("initializing database system")); snprintf(buf, sizeof(buf), - SYSTEMQUOTE "\"%s/initdb\" -D \"%s/data\" -L \"%s\" --noclean%s%s > \"%s/log/initdb.log\" 2>&1" SYSTEMQUOTE, + SYSTEMQUOTE "\"%s/initdb\" -D \"%s/data\" -L \"%s\" --noclean --nosync%s%s > \"%s/log/initdb.log\" 2>&1" SYSTEMQUOTE, bindir, temp_install, datadir, debug ? " --debug" : "", nolocale ? " --no-locale" : "", |