diff options
author | Andres Freund <andres@anarazel.de> | 2022-11-04 18:08:44 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-11-04 18:08:44 -0700 |
commit | a5ac3e76fe96035db44e8e254f55f333c7a11634 (patch) | |
tree | fa3035cee9ca0f1b4df52de837f2014a3ed49c3a | |
parent | ab72a31f6cc58ceda97009a5bfae27bd566a3752 (diff) | |
download | postgresql-a5ac3e76fe96035db44e8e254f55f333c7a11634.tar.gz postgresql-a5ac3e76fe96035db44e8e254f55f333c7a11634.zip |
meson: Split 'main' suite into 'regress' and 'isolation'
Several people didn't like the 'main' name and found it confusing that the
main regression and isolation tests were in one suite.
Author: Justin Pryzby <pryzbyj@telsasoft.com>
Discussion: https://postgr.es/m/20221001221514.2yy257v4zdfhwiy2@awork3.anarazel.de
Discussion: https://postgr.es/m/20221021123435.GU16921@telsasoft.com
-rw-r--r-- | src/test/isolation/meson.build | 2 | ||||
-rw-r--r-- | src/test/regress/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/isolation/meson.build b/src/test/isolation/meson.build index ba27b8c1d44..e2ed400a80a 100644 --- a/src/test/isolation/meson.build +++ b/src/test/isolation/meson.build @@ -58,7 +58,7 @@ isolationtester = executable('isolationtester', bin_targets += isolationtester tests += { - 'name': 'main', + 'name': 'isolation', 'sd': meson.current_source_dir(), 'bd': meson.current_build_dir(), 'isolation': { diff --git a/src/test/regress/meson.build b/src/test/regress/meson.build index 3dcfc11278f..f1adcd9198c 100644 --- a/src/test/regress/meson.build +++ b/src/test/regress/meson.build @@ -64,7 +64,7 @@ testprep_targets += refint_regress tests += { - 'name': 'main', + 'name': 'regress', 'sd': meson.current_source_dir(), 'bd': meson.current_build_dir(), 'regress': { |