summaryrefslogtreecommitdiff
path: root/test/kpod_stats.bats
diff options
context:
space:
mode:
Diffstat (limited to 'test/kpod_stats.bats')
-rw-r--r--test/kpod_stats.bats8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/kpod_stats.bats b/test/kpod_stats.bats
index 94215a15c..930d2f006 100644
--- a/test/kpod_stats.bats
+++ b/test/kpod_stats.bats
@@ -20,7 +20,7 @@ function teardown() {
run crioctl ctr start --id "$ctr_id"
echo "$output"
[ "$status" -eq 0 ]
- run ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream "$ctr_id"
+ run bash -c ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream "$ctr_id"
echo "$output"
[ "$status" -eq 0 ]
cleanup_ctrs
@@ -39,7 +39,7 @@ function teardown() {
echo "$output"
[ "$status" -eq 0 ]
ctr_id="$output"
- run ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream
+ run bash -c ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream
echo "$output"
[ "$status" -eq 0 ]
cleanup_ctrs
@@ -58,7 +58,7 @@ function teardown() {
echo "$output"
[ "$status" -eq 0 ]
ctr_id="$output"
- run ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream --all
+ run bash -c ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream --all
echo "$output"
[ "$status" -eq 0 ]
cleanup_ctrs
@@ -80,7 +80,7 @@ function teardown() {
run crioctl ctr start --id "$ctr_id"
echo "$output"
[ "$status" -eq 0 ]
- run ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream --format {{.ID}} "$ctr_id"
+ run bash -c ${KPOD_BINARY} ${KPOD_OPTIONS} stats --no-stream --format {{.ID}} "$ctr_id"
echo "$output"
[ "$status" -eq 0 ]
# once ps is implemented, run ps -q and see if that equals the output from above