action #15242
Updated by okurz almost 8 years ago
## Observation openQA test in scenario opensuse-Tumbleweed-DVD-x86_64-update_Leap_42.1_kde@64bit fails to continue in [vlc](http://openqa.opensuse.org/tests/313227/modules/vlc/steps/9) after the first proceed question when the dialog shows up again. But the actual problem is that we are running out of space. ``` [3 Dec 2016 17:12:08] <DimStar> also: this in the serial log gives it away: [3 Dec 2016 17:12:09] <DimStar> [ 108.791773] systemd-journald[676]: Failed to write entry (19 items, 534 bytes), ignoring: Invalid argument [3 Dec 2016 17:12:12] <DimStar> [ 119.877326] systemd-journald[676]: Failed to create new system journal: No space left on device [3 Dec 2016 17:13:17] <DimStar> and you see similar issues when it collects the info: https://openqa.opensuse.org/tests/313227#step/vlc/77 ``` again ## Reproducible Reproducible in every build for some time already ## Expected result Update and Well either the package installation of vlc must be changed so that pkcon does not ask more than once or `ensure_installed` should work so probably we need allow to recreate detect the images with "proceed?" question more space. than once ## Further details Always latest result in this scenario: [latest](http://openqa.opensuse.org/tests/latest?machine=64bit&distri=opensuse&arch=x86_64&flavor=DVD&version=Tumbleweed&test=update_Leap_42.1_kde) The code ``` if (match_has_tag('pkcon-proceed-prompt')) { send_key("y"); send_key("ret"); @tags = grep { $_ ne 'pkcon-proceed-prompt' } @tags; next; } ``` has been like this forever. Should we just delete the line `@tags = grep { $_ ne 'pkcon-proceed-prompt' } @tags;`?