summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch2024-06-28 02:21:04 +0000
committerNoah Misch2024-06-28 02:21:04 +0000
commit22a4b104ba70f6f486197ab28a28cd9bcdd4f4ad (patch)
tree9061efa695f812acb58dc9103b755b10dd9b65cf
parent473a352fb393519f22cd4d31839ad3d74b1aeea1 (diff)
Make TAP todo_start effects the same under Meson and prove_check.
This could have caused spurious failures only on SPARC Linux, because today's only todo_start tests for that platform. Back-patch to v16, where Meson support first appeared. Reviewed by Robert Haas. Discussion: https://postgr.es/m/[email protected]
-rwxr-xr-xsrc/tools/testwrap18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/tools/testwrap b/src/tools/testwrap
index d01e61051cb..9a270beb72d 100755
--- a/src/tools/testwrap
+++ b/src/tools/testwrap
@@ -41,12 +41,22 @@ env_dict = {**os.environ,
'TESTDATADIR': os.path.join(testdir, 'data'),
'TESTLOGDIR': os.path.join(testdir, 'log')}
-sp = subprocess.run(args.test_command, env=env_dict)
-
-if sp.returncode == 0:
+sp = subprocess.Popen(args.test_command, env=env_dict, stdout=subprocess.PIPE)
+# Meson categorizes a passing TODO test point as bad
+# (https://github.com/mesonbuild/meson/issues/13183). Remove the TODO
+# directive, so Meson computes the file result like Perl does. This could
+# have the side effect of delaying stdout lines relative to stderr. That
+# doesn't affect the log file, and the TAP protocol uses stdout only.
+for line in sp.stdout:
+ if line.startswith(b'ok '):
+ line = line.replace(b' # TODO ', b' # testwrap-overridden-TODO ', 1)
+ sys.stdout.buffer.write(line)
+returncode = sp.wait()
+
+if returncode == 0:
print('# test succeeded')
open(os.path.join(testdir, 'test.success'), 'x')
else:
print('# test failed')
open(os.path.join(testdir, 'test.fail'), 'x')
-sys.exit(sp.returncode)
+sys.exit(returncode)