diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-11-08 23:05:21 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-11-08 23:05:21 -0500 |
commit | 2e16d61ddb808dce3af75e897f2262132038b77e (patch) | |
tree | cd8b2401df93daca3cb82cf2d772f376f755b6f0 | |
parent | 7097e6c4a48bc02155a9a52c570be67b30b30c9a (diff) | |
download | postgresql-2e16d61ddb808dce3af75e897f2262132038b77e.tar.gz postgresql-2e16d61ddb808dce3af75e897f2262132038b77e.zip |
Fix random discrepancies between parallel_schedule and serial_schedule.
In particular, my previous patch expected the create_index test to run
before the inherit test; but this was only true in the serial schedule.
Rearrange this portion of the schedules to be more consistent.
Per buildfarm results.
-rw-r--r-- | src/test/regress/parallel_schedule | 12 | ||||
-rw-r--r-- | src/test/regress/serial_schedule | 12 |
2 files changed, 14 insertions, 10 deletions
diff --git a/src/test/regress/parallel_schedule b/src/test/regress/parallel_schedule index 376f28d99a1..b1d68e90555 100644 --- a/src/test/regress/parallel_schedule +++ b/src/test/regress/parallel_schedule @@ -50,14 +50,18 @@ test: create_function_2 test: copy copyselect # ---------- -# Another group of parallel tests +# More groups of parallel tests # ---------- -test: constraints triggers create_misc create_aggregate create_operator inherit typed_table vacuum drop_if_exists create_cast - -# Depends on the above +test: create_misc create_operator +# These depend on the above two test: create_index create_view # ---------- +# Another group of parallel tests +# ---------- +test: create_aggregate create_cast constraints triggers inherit typed_table vacuum drop_if_exists + +# ---------- # sanity_check does a vacuum, affecting the sort order of SELECT * # results. So it should not run parallel to other tests. # ---------- diff --git a/src/test/regress/serial_schedule b/src/test/regress/serial_schedule index bb654f9c612..ac0c2071d29 100644 --- a/src/test/regress/serial_schedule +++ b/src/test/regress/serial_schedule @@ -49,20 +49,20 @@ test: create_function_1 test: create_type test: create_table test: create_function_2 -test: create_cast test: copy test: copyselect -test: constraints -test: triggers test: create_misc -test: create_aggregate test: create_operator test: create_index -test: drop_if_exists +test: create_view +test: create_aggregate +test: create_cast +test: constraints +test: triggers test: inherit test: typed_table test: vacuum -test: create_view +test: drop_if_exists test: sanity_check test: errors test: select |