re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-10 14:18:09 +02:00
parent b3f0c74080
commit 8052e4f144
4 changed files with 38 additions and 1 deletions

8
.gitignore vendored
View File

@ -1,2 +1,8 @@
SOURCES/1.2.3.tar.gz /isomd5sum-1.0.11.tar.bz2
/isomd5sum-1.0.12.tar.bz2
/1.0.12.tar.gz
/1.1.0.tar.gz
/1.2.0.tar.gz
/1.2.1.tar.gz
/1.2.2.tar.gz
/1.2.3.tar.gz /1.2.3.tar.gz

15
tests/cmd-line/runtest.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh -eux
# Create testing iso image
rm -rf ./isocontent
mkdir isocontent
dd if=/dev/zero of=isocontent/big_enough_file bs=500K count=1
mkisofs -o test.iso isocontent
# Implant and check md5 sum
implantisomd5 test.iso
checkisomd5 --verbose test.iso
# Destroy testing iso image
rm -rf ./isocontent
rm test.iso

6
tests/gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

10
tests/tests.yml Normal file
View File

@ -0,0 +1,10 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- cmd-line
required_packages:
- genisoimage
- coreutils