diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-12-16 16:33:50 +0100 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-12-16 16:38:26 +0100 |
commit | f26d09146088eefb577035ff59bd68114be08432 (patch) | |
tree | 0fb5e5069d3634c8445d75ba7ff33b905397ff50 /test | |
parent | sd-netlink: routing policy rule port to fib_rule_hdr (diff) | |
download | systemd-f26d09146088eefb577035ff59bd68114be08432.tar.xz systemd-f26d09146088eefb577035ff59bd68114be08432.zip |
test: drop the trailing whitespace from the QEMU version check
I suspect the original version of the regex was written on a system,
which prints both the QEMU version and the QEMU package version in the
--version output, like Fedora:
$ /bin/qemu-system-x86_64 --version
QEMU emulator version 4.2.1 (qemu-4.2.1-1.fc32)
Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
However, Arch Linux prints only the QEMU version:
$ /bin/qemu-system-x86_64 --version
QEMU emulator version 5.2.0
Copyright (c) 2003-2020 Fabrice Bellard and the QEMU Project developers
This causes the awk regex to not match the version string, since there's
no whitespace after it, causing the version check to fail (as well as the
TEST-36-NUMAPOLICY) as well.
Follow-up for 43b49470d1f2808555c07f64cd0a1529b7ddd559.
Diffstat (limited to 'test')
-rw-r--r-- | test/test-functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-functions b/test/test-functions index 39f2baea01..ce2c42b954 100644 --- a/test/test-functions +++ b/test/test-functions @@ -235,7 +235,7 @@ function qemu_min_version() { find_qemu_bin || return 2 # get version from binary - qemu_ver=$($QEMU_BIN --version | awk '/^QEMU emulator version ([0-9]*\.[0-9]*\.[0-9]*) / {print $4}') + qemu_ver=$($QEMU_BIN --version | awk '/^QEMU emulator version ([0-9]*\.[0-9]*\.[0-9]*)/ {print $4}') # Check version string format echo "$qemu_ver" | grep -q '^[0-9]*\.[0-9]*\.[0-9]*$' || return 2 |