Compare commits

...

No commits in common. "c8s" and "c8" have entirely different histories.
c8s ... c8

10 changed files with 2 additions and 55 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
malaga-7.12.tgz SOURCES/malaga-7.12.tgz

1
.malaga.metadata Normal file
View File

@ -0,0 +1 @@
19d74697575229231c18c83bb7a16b7ee6c31a51 SOURCES/malaga-7.12.tgz

View File

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

View File

@ -1 +0,0 @@
SHA512 (malaga-7.12.tgz) = 662262115d7cd139d41c7f0fbb53ca3b5cf8b7a933e8ca427050dd40139ceb068f8c330561310fbe0ba7cb0f1e99464cd2a20465b5da649a0b1892f53cf7f2d3

View File

@ -1,36 +0,0 @@
#!/bin/bash
FAIL_COUNT=0
check_pkg() {
local pkg=$1
if rpm -q $pkg
then
echo "PASS"
else
echo "FAIL"
FAIL_COUNT=$((${FAIL_COUNT} + 1))
fi
}
check_binary(){
COMMAND="$1 $2"
echo $COMMAND
${COMMAND}
RETVAL=$?
if [ ${RETVAL} != 0 ] ; then
echo "FAIL"
FAIL_COUNT=$((${FAIL_COUNT} + 1))
else
echo "PASS"
fi
}
check_pkg "malaga"
check_pkg "libmalaga"
for i in malaga mallex malmake malrul malshow malsym
do
check_binary ${i} -v
check_binary ${i} -h
done
echo "FAIL_COUNT=${FAIL_COUNT}"
exit ${FAIL_COUNT}

View File

@ -1,11 +0,0 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
required_packages:
- malaga
tests:
- simple:
dir: scripts
run: bash run.sh