[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v2] qemu-iotests: Treat custom TEST_DIR in 051
From: |
Kevin Wolf |
Subject: |
Re: [Qemu-devel] [PATCH v2] qemu-iotests: Treat custom TEST_DIR in 051 |
Date: |
Tue, 19 Mar 2019 15:52:57 +0100 |
User-agent: |
Mutt/1.11.3 (2019-02-01) |
Am 19.03.2019 um 15:20 hat Lukáš Doktor geschrieben:
> When custom TEST_DIR is specified the output includes it without leading
> '/':
>
> $ TEST_DIR=/var/tmp ./check -file -qcow2 051
> ....
> -drive0 (NODE_NAME): json:{"backing": {"driver": "qcow2", "file":
> {"driver": "file", "filename": "TEST_DIR/t.qcow2"}}, "driver": "qcow2",
> "file": {"driver": "file", "filename": SNAPSHOT_PATH}} (qcow2,
> read-only)
> +drive0 (NODE_NAME): json:{"backing": {"driver": "qcow2", "file":
> {"driver": "file", "filename": "TEST_DIR/t.qcow2"}}, "driver": "qcow2",
> "file": {"driver": "file", "filename": "TEST_DIR/vl.ziHfeP"}} (qcow2,
> read-only)
>
> Let's remove it from the sed regexp.
Hm, yes, this should probably still be specific enough.
> Changes:
>
> v2: Removed the debugging "tee" commands
This note belongs below the "---" so that it doesn't end up in the
actual commit message in the repository.
> Signed-off-by: Lukáš Doktor <address@hidden>
Thanks, fixed the commit message and applied to the block branch.
Kevin