Explorar el Código

[Jenkins] Increase timeout for test_120_8gb_enclave

Our SGX v2 Jenkins workers are inexpensive NUC
computers and need more time to complete the 8GB enclave test.
Don Porter hace 4 años
padre
commit
109af04351
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Pal/regression/test_pal.py

+ 1 - 1
Pal/regression/test_pal.py

@@ -133,7 +133,7 @@ class TC_01_Bootstrap(RegressionTestCase):
     @unittest.skipUnless(HAS_SGX, 'this test requires SGX')
     def test_120_8gb_enclave(self):
         manifest = self.get_manifest('Bootstrap6')
-        stdout, stderr = self.run_binary([manifest], timeout=240)
+        stdout, stderr = self.run_binary([manifest], timeout=360)
         self.assertIn('Loaded Manifest: file:' + manifest, stderr)
         self.assertIn('Executable Range OK', stderr)