First commit of new tools/run-tests.py
authorjkummerow@chromium.org <jkummerow@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 24 Sep 2012 09:38:46 +0000 (09:38 +0000)
committerjkummerow@chromium.org <jkummerow@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 24 Sep 2012 09:38:46 +0000 (09:38 +0000)
commit975d6e21709f3399f421e4e76d0ddafdffb06019
tree56ec744579a7b96338fcf9a025f8826d62926bac
parent26721b7dc0dda8c5f8666ff111c42a7fcf01d00f
First commit of new tools/run-tests.py

Review URL: https://codereview.chromium.org/10919265

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12583 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
47 files changed:
.gitignore
test/benchmarks/testcfg.py
test/cctest/testcfg.py
test/es5conform/testcfg.py
test/message/testcfg.py
test/message/try-catch-finally-no-message.out
test/mjsunit/testcfg.py
test/mozilla/testcfg.py
test/preparser/testcfg.py
test/sputnik/testcfg.py
test/test262/testcfg.py
tools/presubmit.py
tools/run-tests.py [new file with mode: 0755]
tools/status-file-converter.py [new file with mode: 0755]
tools/test-server.py [new file with mode: 0755]
tools/testrunner/README [new file with mode: 0644]
tools/testrunner/__init__.py [new file with mode: 0644]
tools/testrunner/local/__init__.py [new file with mode: 0644]
tools/testrunner/local/commands.py [new file with mode: 0644]
tools/testrunner/local/execution.py [new file with mode: 0644]
tools/testrunner/local/old_statusfile.py [new file with mode: 0644]
tools/testrunner/local/progress.py [new file with mode: 0644]
tools/testrunner/local/statusfile.py [new file with mode: 0644]
tools/testrunner/local/testsuite.py [new file with mode: 0644]
tools/testrunner/local/utils.py [new file with mode: 0644]
tools/testrunner/local/verbose.py [new file with mode: 0644]
tools/testrunner/network/__init__.py [new file with mode: 0644]
tools/testrunner/network/distro.py [new file with mode: 0644]
tools/testrunner/network/endpoint.py [new file with mode: 0644]
tools/testrunner/network/network_execution.py [new file with mode: 0644]
tools/testrunner/network/perfdata.py [new file with mode: 0644]
tools/testrunner/objects/__init__.py [new file with mode: 0644]
tools/testrunner/objects/context.py [new file with mode: 0644]
tools/testrunner/objects/output.py [new file with mode: 0644]
tools/testrunner/objects/peer.py [new file with mode: 0644]
tools/testrunner/objects/testcase.py [new file with mode: 0644]
tools/testrunner/objects/workpacket.py [new file with mode: 0644]
tools/testrunner/server/__init__.py [new file with mode: 0644]
tools/testrunner/server/compression.py [new file with mode: 0644]
tools/testrunner/server/constants.py [new file with mode: 0644]
tools/testrunner/server/daemon.py [new file with mode: 0644]
tools/testrunner/server/local_handler.py [new file with mode: 0644]
tools/testrunner/server/main.py [new file with mode: 0644]
tools/testrunner/server/presence_handler.py [new file with mode: 0644]
tools/testrunner/server/signatures.py [new file with mode: 0644]
tools/testrunner/server/status_handler.py [new file with mode: 0644]
tools/testrunner/server/work_handler.py [new file with mode: 0644]