4a98456ce3
Tests should run the installed package, not the source. So use the test from RHEL 8.5.0 instead of from Fedora. Resolves: rhbz#1968763
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
set -eux
|
|
|
|
# make a small disk image
|
|
fallocate -l 100M ./disk.img
|
|
parted -s ./disk.img mklabel gpt
|
|
parted -s ./disk.img 'mkpart root 1MiB 100%'
|
|
parted -m -s ./disk.img u s p
|