File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ New in 8.2 version:
7
7
same package can happen concurrently on one host and using the same
8
8
port would make random build failures.
9
9
10
+ * If the testing server fails, the %postgresql_tests_* macros print the
11
+ error log out for easier debugging.
12
+
10
13
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11
14
12
15
New in 8.1 version:
Original file line number Diff line number Diff line change @@ -66,7 +66,11 @@ __pgtests_initdb ()
66
66
67
67
__pgtests_start ()
68
68
{
69
- pg_ctl -D " $PGTESTS_DATADIR " -l " $PGTESTS_DATADIR " /start.log start -o " -k $PGTESTS_SOCKETDIR -p $PGTESTS_PORT " -w
69
+ pg_ctl -D " $PGTESTS_DATADIR " -l " $PGTESTS_DATADIR " /start.log start \
70
+ -o " -k $PGTESTS_SOCKETDIR -p $PGTESTS_PORT " -w || {
71
+ cat >&2 " $PGTESTS_DATADIR " /start.log
72
+ false
73
+ }
70
74
}
71
75
72
76
You can’t perform that action at this time.
0 commit comments