inplace005-UNEXPECTEDPASS-tap-meson-v2.patch
text/plain
Filename: inplace005-UNEXPECTEDPASS-tap-meson-v2.patch
Type: text/plain
Part: 0
Message:
Re: race condition in pg_class
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: unified
Series: patch v2
| File | + | − |
|---|---|---|
| src/tools/testwrap | 13 | 3 |
Author: Noah Misch <noah@leadboat.com>
Commit: Noah Misch <noah@leadboat.com>
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 FIXME.
Discussion: https://postgr.es/m/20240512232923.aa.nmisch@google.com
diff --git a/src/tools/testwrap b/src/tools/testwrap
index d01e610..9a270be 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)
+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 sp.returncode == 0:
+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)