Bump up cri-tools to f1a58d681c056f259802f5cae2fe1fbcc6b28667

We need this to pick up a fix for attach test.
This change brings in changes to the crictl CLI
requiring changes to the integration tests.

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
Mrunal Patel 2018-01-25 18:06:38 -08:00
parent 4b658672aa
commit d0fd1f5fa8
18 changed files with 224 additions and 224 deletions

View file

@ -8,7 +8,7 @@ function teardown() {
@test "image volume ignore" {
IMAGE_VOLUMES=ignore start_crio
run crictl runs "$TESTDATA"/sandbox_config.json
run crictl runp "$TESTDATA"/sandbox_config.json
echo "$output"
[ "$status" -eq 0 ]
pod_id="$output"
@ -26,10 +26,10 @@ function teardown() {
[ "$status" -eq 0 ]
[[ "$output" =~ "Exit code: 1" ]]
[[ "$output" =~ "ls: /imagevolume: No such file or directory" ]]
run crictl stops "$pod_id"
run crictl stopp "$pod_id"
echo "$output"
[ "$status" -eq 0 ]
run crictl rms "$pod_id"
run crictl rmp "$pod_id"
echo "$output"
[ "$status" -eq 0 ]
cleanup_ctrs
@ -39,7 +39,7 @@ function teardown() {
@test "image volume bind" {
IMAGE_VOLUMES=bind start_crio
run crictl runs "$TESTDATA"/sandbox_config.json
run crictl runp "$TESTDATA"/sandbox_config.json
echo "$output"
[ "$status" -eq 0 ]
pod_id="$output"
@ -56,10 +56,10 @@ function teardown() {
echo "$output"
[ "$status" -eq 0 ]
[ "$output" = "" ]
run crictl stops "$pod_id"
run crictl stopp "$pod_id"
echo "$output"
[ "$status" -eq 0 ]
run crictl rms "$pod_id"
run crictl rmp "$pod_id"
echo "$output"
[ "$status" -eq 0 ]
cleanup_ctrs