diff --git a/integration_test.sh b/integration_test.sh index dac099cdfa..96dfb1cfc3 100755 --- a/integration_test.sh +++ b/integration_test.sh @@ -2,7 +2,6 @@ root=$(pwd) cd integration_test/src/github.com/opencontainers/runtime-tools -GOPATH=$root/integration_test make runtimetest validation-executables test_cases=("default/default.t" "linux_cgroups_devices/linux_cgroups_devices.t" "linux_cgroups_hugetlb/linux_cgroups_hugetlb.t" "linux_cgroups_pids/linux_cgroups_pids.t" "linux_cgroups_memory/linux_cgroups_memory.t" "linux_cgroups_network/linux_cgroups_network.t" "linux_cgroups_cpus/linux_cgroups_cpus.t" "linux_cgroups_relative_cpus/linux_cgroups_relative_cpus.t" @@ -13,8 +12,10 @@ test_cases=("default/default.t" "linux_cgroups_devices/linux_cgroups_devices.t" # no_paas_test_case=("start/start.t") for case in "${test_cases[@]}"; do echo "Running $case" - if [ 0 -ne $(sudo RUST_BACKTRACE=1 YOUKI_LOG_LEVEL=debug RUNTIME=$root/youki $root/integration_test/src/github.com/opencontainers/runtime-tools/validation/$case | grep "not ok" | wc -l) ]; then + output=$(sudo RUST_BACKTRACE=1 YOUKI_LOG_LEVEL=debug RUNTIME=$root/target/x86_64-unknown-linux-gnu/debug/youki $root/integration_test/src/github.com/opencontainers/runtime-tools/validation/$case) + if [ 0 -ne $(echo $output | grep "not ok" | wc -l) ]; then + echo $output exit 1 fi sleep 1 -done +done \ No newline at end of file