mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-21 21:43:08 +00:00
Fix operators in UEFI post-install load check
&! is not a thing, and os-autoinst has been warning us about this forever: Use of uninitialized value in bitwise and (&) at fedora/main.pm line 310. I just sorta didn't notice. Apparently this turned out to work, but it wasn't *right*. Let's do it this way instead. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
9bc039b26d
commit
e45fc488fc
2
main.pm
2
main.pm
@ -307,7 +307,7 @@ sub load_postinstall_tests() {
|
||||
}
|
||||
autotest::loadtest $storagepost if ($storagepost);
|
||||
|
||||
if (get_var("UEFI") &! get_var("NO_UEFI_POST") &! get_var("START_AFTER_TEST")) {
|
||||
if (get_var("UEFI") && !get_var("NO_UEFI_POST") && !get_var("START_AFTER_TEST")) {
|
||||
autotest::loadtest "tests/uefi_postinstall.pm";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user