Abrt should not fail on found issues but softfail on startup tests.

This commit is contained in:
Lukas Ruzicka 2022-12-05 14:30:03 +01:00
parent 7daa4b3dd0
commit f29572ba76
3 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,15 @@
{
"properties": [],
"tags": [
"abrt_runs_found_problem"
],
"area": [
{
"xpos": 394,
"ypos": 231,
"width": 63,
"height": 17,
"type": "match"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -10,7 +10,10 @@ sub run {
# Start the application
menu_launch_type('abrt');
# Check that it is started
assert_screen 'abrt_runs';
unless (check_screen('abrt_runs')) {
assert_screen('abrt_runs_found_problem');
record_soft_failure("Abrt has reported issues.");
}
# Close the application
quit_with_shortcut();
}