From 1d8ba61938b06c54749b96af34acf3fee751bc93 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Mon, 8 Jul 2019 15:25:56 +0100 Subject: [PATCH 10/39] iotests: Filter SSH paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RH-Author: Pino Toscano Message-id: <20190708152601.21123-6-ptoscano@redhat.com> Patchwork-id: 89416 O-Subject: [RHEL-8.1.0 qemu-kvm PATCH v3 05/10] iotests: Filter SSH paths Bugzilla: 1513367 RH-Acked-by: Philippe Mathieu-Daudé RH-Acked-by: Max Reitz RH-Acked-by: Miroslav Rezanina RH-Acked-by: Markus Armbruster From: Max Reitz 8908b253c4ad5f8874c8d13abec169c696a5cd32 has implemented filtering of remote paths for NFS, but forgot SSH. This patch takes care of that. Signed-off-by: Max Reitz Reviewed-by: John Snow Message-id: 20190210145736.1486-9-mreitz@redhat.com Signed-off-by: Max Reitz (cherry picked from commit ac3589dc463c18e6726be2831196c7755bec39d5) Signed-off-by: Pino Toscano Signed-off-by: Danilo C. L. de Paula --- tests/qemu-iotests/common.rc | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index d054cb9..6490c8d 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -145,6 +145,7 @@ else TEST_IMG="nbd:127.0.0.1:10810" elif [ "$IMGPROTO" = "ssh" ]; then TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT + REMOTE_TEST_DIR="ssh://127.0.0.1$TEST_DIR" TEST_IMG="ssh://127.0.0.1$TEST_IMG_FILE" elif [ "$IMGPROTO" = "nfs" ]; then TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT -- 1.8.3.1