From 7baf3c012c6304a823ffcff1e017019fafd29298 Mon Sep 17 00:00:00 2001 From: Daniel Bennett Date: Thu, 7 Dec 2023 10:23:39 -0600 Subject: [PATCH] e2e: even more time for exec+java tests (#19347) --- e2e/isolation/pids_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/isolation/pids_test.go b/e2e/isolation/pids_test.go index 8e4cbc1d2..821e2955b 100644 --- a/e2e/isolation/pids_test.go +++ b/e2e/isolation/pids_test.go @@ -82,7 +82,7 @@ func testJavaNamespacePID(t *testing.T) { job, cleanup := jobs3.Submit(t, "./input/java.hcl", jobs3.WaitComplete("group"), - jobs3.Timeout(time.Second*30), // exec prestart can be slow + jobs3.Timeout(time.Second*60), // exec prestart + java main ) t.Cleanup(cleanup) @@ -94,7 +94,7 @@ func testJavaHostPID(t *testing.T) { job, cleanup := jobs3.Submit(t, "./input/java_host.hcl", jobs3.WaitComplete("group"), - jobs3.Timeout(time.Second*30), // exec prestart can be slow + jobs3.Timeout(time.Second*60), // exec prestart + java main ) t.Cleanup(cleanup) @@ -107,7 +107,7 @@ func testJavaHostPID(t *testing.T) { func testJavaNamespaceAllocExec(t *testing.T) { job, cleanup := jobs3.Submit(t, "./input/alloc_exec_java.hcl", - jobs3.Timeout(time.Second*30), // exec prestart can be slow + jobs3.Timeout(time.Second*60), // exec prestart + java main ) t.Cleanup(cleanup)