Merge pull request #3669 from crosbymichael/crun
Don't search for state.json path in tests
This commit is contained in:
commit
1af133f6c5
@ -164,9 +164,9 @@ version = 1
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
stateJSONPath := filepath.Join(runtimeRoot, testNamespace, id, "state.json")
|
containerPath := filepath.Join(runtimeRoot, testNamespace, id)
|
||||||
if _, err = os.Stat(stateJSONPath); err != nil {
|
if _, err = os.Stat(containerPath); err != nil {
|
||||||
t.Errorf("error while getting stat for %s: %v", stateJSONPath, err)
|
t.Errorf("error while getting stat for %s: %v", containerPath, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = task.Kill(ctx, syscall.SIGKILL); err != nil {
|
if err = task.Kill(ctx, syscall.SIGKILL); err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user