Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/test/regress/parallel_schedule_oriole
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ test: copy copyselect copydml
# Note: many of the tests in later groups depend on create_index
# ----------
test: create_function_c create_misc create_operator create_procedure create_type create_schema create_view
test: create_index

# ----------
# Another group of parallel tests
Expand Down Expand Up @@ -104,7 +105,7 @@ test: json_encoding jsonpath jsonpath_encoding jsonb_jsonpath sqljson sqljson_qu
# NB: temp.sql does a reconnect which transiently uses 2 connections,
# so keep this parallel group to at most 19 tests
# ----------
test: plancache rangefuncs prepare sequence polymorphism largeobject xml
test: plancache rangefuncs prepare alter_table sequence polymorphism largeobject xml

# ----------
# Another group of parallel tests
Expand Down
4 changes: 2 additions & 2 deletions src/test/regress/pg_regress.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ static char *shellprog = SHELLPROG;
* Windows-style newlines, but the comparison files might or might not.
*/
#ifndef WIN32
const char *basic_diff_opts = "-I \"NOTICE\" -I \"DETAIL\" -I \"WARNING\"";
const char *pretty_diff_opts = "-I \"NOTICE\" -I \"DETAIL\" -I \"WARNING\" -U3";
const char *basic_diff_opts = "";
const char *pretty_diff_opts = "-U3";
#else
const char *basic_diff_opts = "--strip-trailing-cr";
const char *pretty_diff_opts = "--strip-trailing-cr -U3";
Expand Down