diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2024-04-29 19:46:33 -0400 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-09-24 12:40:11 +0900 |
commit | f663f4daf075b75268579c9a19d79de81b18c67b (patch) | |
tree | 3f41af6664920ada0e518d18b1188d79db9d35c6 | |
parent | 4dd17490faa34c2dc4725593f7866c3f18f76e7d (diff) | |
download | postgresql-f663f4daf075b75268579c9a19d79de81b18c67b.tar.gz postgresql-f663f4daf075b75268579c9a19d79de81b18c67b.zip |
Allow meson builds to run test_pg_dump test in installcheck mode.
This had been disabled because the test "doesn't delete its user".
It doesn't seem like a great idea for the meson tests to act
differently from the makefile tests, though, and the makefiles
had no such exception (which is how come only copperhead noticed
the problem just fixed in 534287403). In any case, the premise
is false since 936e3fa37, so let's remove the restriction.
Discussion: https://postgr.es/m/2857513.1713733688@sss.pgh.pa.us
-rw-r--r-- | src/test/modules/test_pg_dump/meson.build | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/modules/test_pg_dump/meson.build b/src/test/modules/test_pg_dump/meson.build index 8f61050c298..52c64abd307 100644 --- a/src/test/modules/test_pg_dump/meson.build +++ b/src/test/modules/test_pg_dump/meson.build @@ -13,8 +13,6 @@ tests += { 'sql': [ 'test_pg_dump', ], - # doesn't delete its user - 'runningcheck': false, }, 'tap': { 'tests': [ |