From e20555d4bc801491a7af46cacd74dc8a57e9efd3 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Thu, 17 Jan 2019 19:33:35 -0500 Subject: [PATCH] test: Don't be unnecessarily noisy in this test This is confusing if you're looking for an error in the test. --- test/shell/file-move.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/shell/file-move.sh b/test/shell/file-move.sh index 2bd4c095..87ffaf22 100755 --- a/test/shell/file-move.sh +++ b/test/shell/file-move.sh @@ -1,7 +1,7 @@ #!/bin/bash -e mkdir -p /tmp/mgmt/ -rm /tmp/mgmt/f1 || true +rm /tmp/mgmt/f1 &>/dev/null || true # run empty graph, with prometheus support $timeout --kill-after=60s 55s "$MGMT" run --tmp-prefix yaml --yaml=file-move.yaml 2>&1 | tee /tmp/mgmt/file-move.log &