aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCleber Rosa <crosa@redhat.com>2021-04-12 00:46:35 -0400
committerJohn Snow <jsnow@redhat.com>2021-06-01 16:21:20 -0400
commitc028691e65b9f45e7a8ff8ffbfb9a3818478b572 (patch)
treec7ad43d84a75516bd762de24757e3d7cc3809693 /tests
parentf084e148aa401f71c33da4268f73815e0dc2b262 (diff)
downloadqemu-c028691e65b9f45e7a8ff8ffbfb9a3818478b572.zip
qemu-c028691e65b9f45e7a8ff8ffbfb9a3818478b572.tar.gz
qemu-c028691e65b9f45e7a8ff8ffbfb9a3818478b572.tar.bz2
tests/acceptance/virtiofs_submounts.py: evaluate string not length
If the vmlinuz variable is set to anything that evaluates to True, then the respective arguments should be set. If the variable contains an empty string, than it will evaluate to False, and the extra arguments will not be set. This keeps the same logic, but improves readability a bit. Signed-off-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Beraldo Leal <bleal@redhat.com> Reviewed-by: Eric Auger <eric.auger@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Message-Id: <20210412044644.55083-3-crosa@redhat.com> Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/acceptance/virtiofs_submounts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/virtiofs_submounts.py b/tests/acceptance/virtiofs_submounts.py
index 5b74ce2..ca64b76 100644
--- a/tests/acceptance/virtiofs_submounts.py
+++ b/tests/acceptance/virtiofs_submounts.py
@@ -251,7 +251,7 @@ class VirtiofsSubmountsTest(LinuxTest):
super(VirtiofsSubmountsTest, self).setUp(pubkey)
- if len(vmlinuz) > 0:
+ if vmlinuz:
self.vm.add_args('-kernel', vmlinuz,
'-append', 'console=ttyS0 root=/dev/sda1')