From a5ac3e76fe96035db44e8e254f55f333c7a11634 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Fri, 4 Nov 2022 18:08:44 -0700 Subject: [PATCH] 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 Discussion: https://postgr.es/m/20221001221514.2yy257v4zdfhwiy2@awork3.anarazel.de Discussion: https://postgr.es/m/20221021123435.GU16921@telsasoft.com --- src/test/isolation/meson.build | 2 +- 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': { -- 2.39.5