diff options
author | Andres Freund | 2022-11-05 01:08:44 +0000 |
---|---|---|
committer | Andres Freund | 2022-11-05 01:08:44 +0000 |
commit | a5ac3e76fe96035db44e8e254f55f333c7a11634 (patch) | |
tree | fa3035cee9ca0f1b4df52de837f2014a3ed49c3a | |
parent | ab72a31f6cc58ceda97009a5bfae27bd566a3752 (diff) |
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 <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Discussion: https://postgr.es/m/[email protected]
-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 ba27b8c1d4..e2ed400a80 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 3dcfc11278..f1adcd9198 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': { |