summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund2023-01-17 21:49:09 +0000
committerAndres Freund2023-01-17 21:49:09 +0000
commit27da598961ce443e9010c19085d17dc2b6a04d56 (patch)
tree0351039a451d7e49f7d3a627a7496b652f2f6377
parent3a36ca03e423ad1e2c9f19cd0da5e7dedb48734e (diff)
meson: Add two missing regress tests
It's likely worth adding some automated way of preventing further omissions. We're discussing how to best do that. Reported-by: Justin Pryzby <[email protected]> Discussion: https://postgr.es/m/[email protected]
-rw-r--r--contrib/pg_stat_statements/meson.build1
-rw-r--r--src/test/modules/unsafe_tests/meson.build1
2 files changed, 2 insertions, 0 deletions
diff --git a/contrib/pg_stat_statements/meson.build b/contrib/pg_stat_statements/meson.build
index b738f1b2511..508b53b4a27 100644
--- a/contrib/pg_stat_statements/meson.build
+++ b/contrib/pg_stat_statements/meson.build
@@ -41,6 +41,7 @@ tests += {
'regress': {
'sql': [
'pg_stat_statements',
+ 'oldextversions',
],
'regress_args': ['--temp-config', files('pg_stat_statements.conf')],
# Disabled because these tests require
diff --git a/src/test/modules/unsafe_tests/meson.build b/src/test/modules/unsafe_tests/meson.build
index 8a8062e457e..304f0ed61a2 100644
--- a/src/test/modules/unsafe_tests/meson.build
+++ b/src/test/modules/unsafe_tests/meson.build
@@ -8,6 +8,7 @@ tests += {
'sql': [
'rolenames',
'alter_system_table',
+ 'guc_privs',
],
},
}