From 0b065c7ec2532cd5f7acea91bf5ded40364ddcfc Mon Sep 17 00:00:00 2001 From: Garret Raziel Date: Wed, 28 Jan 2015 13:42:34 +0100 Subject: [PATCH] corrected test_flags for tests --- tests/_boot_to_anaconda.pm | 2 +- tests/_do_install_and_reboot.pm | 2 +- tests/_wait_for_bootloader.pm | 2 +- tests/_wait_for_login_screen.pm | 2 +- tests/disk_guided_delete_all.pm | 2 +- tests/disk_guided_empty.pm | 2 +- tests/disk_guided_multi.pm | 2 +- tests/disk_guided_multi_postinstall.pm | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/_boot_to_anaconda.pm b/tests/_boot_to_anaconda.pm index bff47c99..2de5f6db 100644 --- a/tests/_boot_to_anaconda.pm +++ b/tests/_boot_to_anaconda.pm @@ -50,7 +50,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { milestone => 1 }; + return { fatal => 1 }; } 1; diff --git a/tests/_do_install_and_reboot.pm b/tests/_do_install_and_reboot.pm index 3beba5fd..0b3698b4 100644 --- a/tests/_do_install_and_reboot.pm +++ b/tests/_do_install_and_reboot.pm @@ -43,7 +43,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { milestone => 1 }; + return { fatal => 1 }; } 1; diff --git a/tests/_wait_for_bootloader.pm b/tests/_wait_for_bootloader.pm index e12d5b25..9daa8d4f 100644 --- a/tests/_wait_for_bootloader.pm +++ b/tests/_wait_for_bootloader.pm @@ -38,7 +38,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { milestone => 1 }; + return { fatal => 1 }; } 1; diff --git a/tests/_wait_for_login_screen.pm b/tests/_wait_for_login_screen.pm index ab099ca5..894247f2 100644 --- a/tests/_wait_for_login_screen.pm +++ b/tests/_wait_for_login_screen.pm @@ -52,7 +52,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { milestone => 1 }; + return { fatal => 1, milestone => 1 }; } 1; diff --git a/tests/disk_guided_delete_all.pm b/tests/disk_guided_delete_all.pm index 8c4668fe..49856b2d 100644 --- a/tests/disk_guided_delete_all.pm +++ b/tests/disk_guided_delete_all.pm @@ -27,7 +27,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { important => 1 }; + return { fatal => 1 }; } 1; diff --git a/tests/disk_guided_empty.pm b/tests/disk_guided_empty.pm index 1d479134..d57df78e 100644 --- a/tests/disk_guided_empty.pm +++ b/tests/disk_guided_empty.pm @@ -25,7 +25,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { important => 1 }; + return { fatal => 1 }; } 1; diff --git a/tests/disk_guided_multi.pm b/tests/disk_guided_multi.pm index 3fb10406..ac98ab19 100644 --- a/tests/disk_guided_multi.pm +++ b/tests/disk_guided_multi.pm @@ -23,7 +23,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { important => 1 }; + return { fatal => 1 }; } 1; diff --git a/tests/disk_guided_multi_postinstall.pm b/tests/disk_guided_multi_postinstall.pm index 12d1d074..f14b7f24 100644 --- a/tests/disk_guided_multi_postinstall.pm +++ b/tests/disk_guided_multi_postinstall.pm @@ -17,7 +17,7 @@ sub test_flags { # 'fatal' - whole test suite is in danger if this fails # 'milestone' - after this test succeeds, update 'lastgood' # 'important' - if this fails, set the overall state to 'fail' - return { important => 1 }; + return { fatal => 1 }; } 1;