os-autoinst-distri-rocky/tests/mediakit_fileconflicts.pm
Adam Williamson 5a10c537f7 Update potential_conflict invocation for Python 3
The script got ported. Yay.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2019-07-22 14:54:36 -07:00

24 lines
600 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
sub run {
# create a mount point for the ISO
assert_script_run "mkdir -p /mnt/iso";
# mount the ISO there
assert_script_run "mount /dev/cdrom /mnt/iso";
# download the check script
assert_script_run "curl -o /usr/local/bin/potential_conflict.py https://pagure.io/fedora-qa/qa-misc/raw/master/f/potential_conflict.py";
# run the check
assert_script_run "/usr/local/bin/potential_conflict.py --repofrompath=media,/mnt/iso -r media";
}
sub test_flags {
return { fatal => 1 };
}
1;
# vim: set sw=4 et: