diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2020-07-11 08:17:07 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-11 08:18:35 -0700 |
commit | 69f2059e5d38bacac4bcda7912cca580ab70914d (patch) | |
tree | 31236d8bd287834ea01938144b1408542ffb8681 /test/runtimes/proctor/nodejs.go | |
parent | 216dcebc066c82907b0de790a77a3deb6a734805 (diff) |
Runtime test batch executor
Earlier we were docker exec-ing each test at a time. However invoking the test
framework has a fixed overhead which made it infeasible to make the runtime
tests run as presubmits. This change now executes tests in batches of 50 (can
be altered). This really speeds up testing process.
With this change, the following tests can be run in reasonable times:
- Go
- Nodejs
- Php
- Python
PiperOrigin-RevId: 320763916
Diffstat (limited to 'test/runtimes/proctor/nodejs.go')
-rw-r--r-- | test/runtimes/proctor/nodejs.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/runtimes/proctor/nodejs.go b/test/runtimes/proctor/nodejs.go index bd57db444..23d6edc72 100644 --- a/test/runtimes/proctor/nodejs.go +++ b/test/runtimes/proctor/nodejs.go @@ -39,8 +39,8 @@ func (nodejsRunner) ListTests() ([]string, error) { return testSlice, nil } -// TestCmd implements TestRunner.TestCmd. -func (nodejsRunner) TestCmd(test string) *exec.Cmd { - args := []string{filepath.Join("tools", "test.py"), test} - return exec.Command("/usr/bin/python", args...) +// TestCmds implements TestRunner.TestCmds. +func (nodejsRunner) TestCmds(tests []string) []*exec.Cmd { + args := append([]string{filepath.Join("tools", "test.py")}, tests...) + return []*exec.Cmd{exec.Command("/usr/bin/python", args...)} } |