remove old STI tests
Related: RHEL-50092
This commit is contained in:
parent
d4a697a62c
commit
a69bc796f3
@ -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
|
@ -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
|
@ -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
|
@ -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
|
Loading…
Reference in New Issue
Block a user