diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:41:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:41:39 +0000 |
commit | 289262a517ab91e32d5982dee4c1cdc9c9d7e75a (patch) | |
tree | 4fec5a9696c211c3e5cc570327077f5ba290b6d4 /debian/tests/exhaustive | |
parent | Adding upstream version 1.0.1. (diff) | |
download | meson-289262a517ab91e32d5982dee4c1cdc9c9d7e75a.tar.xz meson-289262a517ab91e32d5982dee4c1cdc9c9d7e75a.zip |
Adding debian version 1.0.1-5.debian/1.0.1-5debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests/exhaustive')
-rwxr-xr-x | debian/tests/exhaustive | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/tests/exhaustive b/debian/tests/exhaustive new file mode 100755 index 0000000..541ff2a --- /dev/null +++ b/debian/tests/exhaustive @@ -0,0 +1,12 @@ +#!/bin/sh + +# Autopkgtests will raise an error if any +# text is written to stderr by the test. +# +# This is stupid, because many test frameworks +# such as Python's unittest, write status +# information to stderr. The only thing we can +# do is to forward it all to stdout, since +# the test runner will return a non zero +# exit code if any actual errors happened. +MESON_EXE=/usr/bin/meson ./run_tests.py 2>&1 |