remove old STI tests

Related: RHEL-50092
This commit is contained in:
Radka Brychtova 2024-10-21 13:55:19 +02:00 committed by Frantisek Sumsal
parent d4a697a62c
commit a69bc796f3
4 changed files with 0 additions and 61 deletions

View File

@ -1,21 +0,0 @@
#!/bin/bash
passed=0
subtests=(./compress ./decompress)
total=${#subtests[@]}
for subtest in ${subtests[@]}
do
pushd $subtest >/dev/null
./test.sh
result=$?
echo "Test $subtest result: $result"
if [ "$result" == "0" ]
then
((passed++))
fi
popd >/dev/null
done
echo "Passed $passed/$total tests"
[[ $total == $passed ]] || exit 1

View File

@ -1,10 +0,0 @@
rm -rf ./in ./out
echo "Hello world" > ./in
zstd ./in -o ./out || exit 1
ls ./out || exit 1
rm -rf ./in ./out
exit 0

View File

@ -1,15 +0,0 @@
rm -rf in out exp
echo "Hello World" > in
echo "Hello World" > exp
zstd ./in -o ./out
rm in
zstd -d ./out -o ./in
diff ./in ./exp || exit 1
rm -rf in out exp
exit 0

View File

@ -1,15 +0,0 @@
---
- hosts: localhost
vars:
- artifacts: ./artifacts
remote_user: root
roles:
- role: standard-test-basic
tags:
- atomic
- classic
- container
tests:
- simple:
dir: gating
run: ./all.sh