diff --git a/test/ctr.bats b/test/ctr.bats index 5f808fea..0ede579c 100644 --- a/test/ctr.bats +++ b/test/ctr.bats @@ -14,8 +14,8 @@ function teardown() { start_ocid run ocic pod create --config "$TESTDATA"/sandbox_config.json - [ "$status" -eq 0 ] echo "$output" + [ "$status" -eq 0 ] pod_id="$output" run ocic ctr create --config "$TESTDATA"/container_redis.json --pod "$pod_id" echo "$output" @@ -45,8 +45,8 @@ function teardown() { start_ocid run ocic pod create --config "$TESTDATA"/sandbox_config.json - [ "$status" -eq 0 ] echo "$output" + [ "$status" -eq 0 ] pod_id="$output" run ocic pod list echo "$output" diff --git a/test/pod.bats b/test/pod.bats index 1bc20142..9b8f918a 100644 --- a/test/pod.bats +++ b/test/pod.bats @@ -15,20 +15,25 @@ function teardown() { start_ocid run ocic pod create --config "$TESTDATA"/sandbox_config.json - [ "$status" -eq 0 ] echo "$output" + [ "$status" -eq 0 ] id="$output" run ocic pod stop --id "$id" + echo "$output" [ "$status" -eq 0 ] + echo "$output" run ocic pod remove --id "$id" + echo "$output" [ "$status" -eq 0 ] run ocic pod create --config "$TESTDATA"/sandbox_config.json - [ "$status" -eq 0 ] echo "$output" + [ "$status" -eq 0 ] id="$output" run ocic pod stop --id "$id" + echo "$output" [ "$status" -eq 0 ] run ocic pod remove --id "$id" + echo "$output" [ "$status" -eq 0 ] stop_ocid cleanup_pods @@ -42,8 +47,8 @@ function teardown() { start_ocid run ocic pod create --config "$TESTDATA"/sandbox_config.json - [ "$status" -eq 0 ] echo "$output" + [ "$status" -eq 0 ] pod_id="$output" run ocic ctr create --config "$TESTDATA"/container_redis.json --pod "$pod_id" echo "$output" diff --git a/test/runtimeversion.bats b/test/runtimeversion.bats index 60bbfa2e..20848fb4 100644 --- a/test/runtimeversion.bats +++ b/test/runtimeversion.bats @@ -9,6 +9,7 @@ function teardown() { @test "ocic runtimeversion" { start_ocid ocic runtimeversion + echo "$output" [ "$status" -eq 0 ] stop_ocid }