We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19327cb commit 8ddfd65Copy full SHA for 8ddfd65
1 file changed
meson.build
@@ -260,7 +260,7 @@ executable('pg_tde_waldump',
260
link_with: [pg_tde_frontend, pg_tde_frontend_xlog],
261
)
262
263
-sql_tests = [
+regress_tests = [
264
'access_control',
265
'alter_index',
266
'cache_alloc',
@@ -316,9 +316,18 @@ tap_tests = [
316
't/wal_key_tli.pl',
317
]
318
319
+pg_regress = find_program('pg_regress', dirs: [pkglibdir / 'pgxs/src/test/regress'])
320
+
321
+test('regress',
322
+ pg_regress,
323
+ args: [
324
+ '--bindir', bindir,
325
+ '--inputdir', meson.current_source_dir(),
326
+ ] + regress_tests,
327
+)
328
329
testwrap = files('testwrap')
330
perl = find_program('perl')
-pg_regress = find_program('pg_regress', dirs: [pkglibdir / 'pgxs/src/test/regress'])
331
332
env = environment()
333
env.prepend('PATH', bindir)
0 commit comments