summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-09-13 15:14:47 +0200
committerGitHub <noreply@github.com>2022-09-13 15:14:47 +0200
commit51b5d30b10810e88baaff78c22b9747395e705b5 (patch)
tree709ccad9db6b4c008b183bfd1a547a0d4a14c739 /test
parent68eb82ceb22484b642a381a080c71732e01a7982 (diff)
parent6210c6723d8812165352fd5616797baf7c8d15f0 (diff)
downloadpodman-51b5d30b10810e88baaff78c22b9747395e705b5.tar.gz
podman-51b5d30b10810e88baaff78c22b9747395e705b5.tar.bz2
podman-51b5d30b10810e88baaff78c22b9747395e705b5.zip
Merge pull request #15721 from edsantiago/instrument_metacopy_flake
TEMPORARY: instrumenting for 15488
Diffstat (limited to 'test')
-rw-r--r--test/system/helpers.bash9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/system/helpers.bash b/test/system/helpers.bash
index b0d4b526a..4bc1ba78c 100644
--- a/test/system/helpers.bash
+++ b/test/system/helpers.bash
@@ -177,6 +177,15 @@ function run_podman() {
# without "quotes", multiple lines are glommed together into one
if [ -n "$output" ]; then
echo "$output"
+
+ # FIXME FIXME FIXME: instrumenting to track down #15488. Please
+ # remove once that's fixed. We include the args because, remember,
+ # bats only shows output on error; it's possible that the first
+ # instance of the metacopy warning happens in a test that doesn't
+ # check output, hence doesn't fail.
+ if [[ "$output" =~ Ignoring.global.metacopy.option ]]; then
+ echo "# YO! metacopy warning triggered by: podman $*" >&3
+ fi
fi
if [ "$status" -ne 0 ]; then
echo -n "[ rc=$status ";