Revision 29da8667b11f350a54194937f591a4853cff795e authored by Joe Stringer on 15 April 2022, 15:24:38 UTC, committed by Joe Stringer on 15 April 2022, 16:03:05 UTC
Signed-off-by: Joe Stringer <joe@cilium.io>
1 parent fa0deae
Raw File
run-tests
#!/bin/bash

set -e
set -o pipefail

# Set path to contain Go binaries explicitly; see issue 566.
export PATH=$PATH:/usr/local/go/bin:/home/vagrant/go/bin:/home/vagrant/bin
export TEST_SUITE="runtime-tests"
mkdir -p ./cilium-files

for test in *.sh; do
	file=$(basename $test)
	filename="${file%.*}"
        mkdir -p ./cilium-files/"${filename}"
	echo "#################################################"
	echo
	echo
	echo
	echo "Starting test $test"
	echo
	echo
	echo
	./$test | tee ./cilium-files/"${filename}"/output.txt
	echo
	echo
	echo
	echo "Finished test $test"
	echo
	echo
	echo
	echo "#################################################"
done
back to top