From 7dfcf727a5730b15020f136282a1ede15144a268 Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Tue, 4 Aug 2020 09:49:33 -0700 Subject: [runtime tests] Fix nodejs runtime tests. - Exclude flaky tests. - Bump timeout. - Un-exclude passing tests to increase testing surface. - Create/Update bugs for tests that pass on runc but fail on runsc. PiperOrigin-RevId: 324830840 --- test/runtimes/proctor/nodejs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/runtimes/proctor') diff --git a/test/runtimes/proctor/nodejs.go b/test/runtimes/proctor/nodejs.go index 23d6edc72..dead5af4f 100644 --- a/test/runtimes/proctor/nodejs.go +++ b/test/runtimes/proctor/nodejs.go @@ -41,6 +41,6 @@ func (nodejsRunner) ListTests() ([]string, error) { // TestCmds implements TestRunner.TestCmds. func (nodejsRunner) TestCmds(tests []string) []*exec.Cmd { - args := append([]string{filepath.Join("tools", "test.py")}, tests...) + args := append([]string{filepath.Join("tools", "test.py"), "--timeout=180"}, tests...) return []*exec.Cmd{exec.Command("/usr/bin/python", args...)} } -- cgit v1.2.3