fix-parallel-test-in-test_decoding.patch
text/x-diff
Filename: fix-parallel-test-in-test_decoding.patch
Type: text/x-diff
Part: 0
Patch
Format: unified
| File | + | − |
|---|---|---|
| contrib/test_decoding/.gitignore | 0 | 0 |
| contrib/test_decoding/Makefile | 0 | 0 |
diff --git a/contrib/test_decoding/.gitignore b/contrib/test_decoding/.gitignore index 1f95503..09d60bf 100644 *** a/contrib/test_decoding/.gitignore --- b/contrib/test_decoding/.gitignore *************** *** 3,5 **** --- 3,6 ---- /isolation_output/ /regression_output/ /tmp_check/ + /tmp_check_iso/ diff --git a/contrib/test_decoding/Makefile b/contrib/test_decoding/Makefile index d2bc8b8..ea31d88 100644 *** a/contrib/test_decoding/Makefile --- b/contrib/test_decoding/Makefile *************** PGFILEDESC = "test_decoding - example of *** 5,11 **** # Note: because we don't tell the Makefile there are any regression tests, # we have to clean those result files explicitly ! EXTRA_CLEAN = $(pg_regress_clean_files) ./regression_output ./isolation_output ifdef USE_PGXS PG_CONFIG = pg_config --- 5,12 ---- # Note: because we don't tell the Makefile there are any regression tests, # we have to clean those result files explicitly ! EXTRA_CLEAN = $(pg_regress_clean_files) ./regression_output \ ! ./isolation_output ./tmp_check_iso ifdef USE_PGXS PG_CONFIG = pg_config *************** isolationcheck: | submake-isolation subm *** 59,64 **** --- 60,66 ---- $(MKDIR_P) isolation_output $(pg_isolation_regress_check) \ --temp-config $(top_srcdir)/contrib/test_decoding/logical.conf \ + --temp-instance=./tmp_check_iso \ --outputdir=./isolation_output \ $(ISOLATIONCHECKS)