mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Use new location of python-hello image in tests.
PiperOrigin-RevId: 256062988
This commit is contained in:
committed by
gVisor bot
parent
06537129a6
commit
4a72c8078e
@@ -209,11 +209,14 @@ func TestMysql(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestPythonHello(t *testing.T) {
|
||||
if err := testutil.Pull("google/python-hello"); err != nil {
|
||||
// TODO(b/136503277): Once we have more complete python runtime tests,
|
||||
// we can drop this one.
|
||||
const img = "gcr.io/gvisor-presubmit/python-hello"
|
||||
if err := testutil.Pull(img); err != nil {
|
||||
t.Fatalf("docker pull failed: %v", err)
|
||||
}
|
||||
d := testutil.MakeDocker("python-hello-test")
|
||||
if err := d.Run("-p", "8080", "google/python-hello"); err != nil {
|
||||
if err := d.Run("-p", "8080", img); err != nil {
|
||||
t.Fatalf("docker run failed: %v", err)
|
||||
}
|
||||
defer d.CleanUp()
|
||||
|
||||
@@ -86,16 +86,17 @@ func TestLifeCycle(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestPauseResume(t *testing.T) {
|
||||
const img = "gcr.io/gvisor-presubmit/python-hello"
|
||||
if !testutil.IsPauseResumeSupported() {
|
||||
t.Log("Pause/resume is not supported, skipping test.")
|
||||
return
|
||||
}
|
||||
|
||||
if err := testutil.Pull("google/python-hello"); err != nil {
|
||||
if err := testutil.Pull(img); err != nil {
|
||||
t.Fatal("docker pull failed:", err)
|
||||
}
|
||||
d := testutil.MakeDocker("pause-resume-test")
|
||||
if err := d.Run("-p", "8080", "google/python-hello"); err != nil {
|
||||
if err := d.Run("-p", "8080", img); err != nil {
|
||||
t.Fatalf("docker run failed: %v", err)
|
||||
}
|
||||
defer d.CleanUp()
|
||||
@@ -149,15 +150,16 @@ func TestPauseResume(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestCheckpointRestore(t *testing.T) {
|
||||
const img = "gcr.io/gvisor-presubmit/python-hello"
|
||||
if !testutil.IsPauseResumeSupported() {
|
||||
t.Log("Pause/resume is not supported, skipping test.")
|
||||
return
|
||||
}
|
||||
if err := testutil.Pull("google/python-hello"); err != nil {
|
||||
if err := testutil.Pull(img); err != nil {
|
||||
t.Fatal("docker pull failed:", err)
|
||||
}
|
||||
d := testutil.MakeDocker("save-restore-test")
|
||||
if err := d.Run("-p", "8080", "google/python-hello"); err != nil {
|
||||
if err := d.Run("-p", "8080", img); err != nil {
|
||||
t.Fatalf("docker run failed: %v", err)
|
||||
}
|
||||
defer d.CleanUp()
|
||||
|
||||
Reference in New Issue
Block a user