Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-11-17 17:04:20 +0300
committerRyan Dahl <ry@tinyclouds.org>2009-11-17 17:05:10 +0300
commit6cb0e0e5f584eab78a9be2065f021cefad976bcf (patch)
tree84a776485f33de8b2bc8ab8077c429a29e0f4700
parent6e6562e551e74e7b8d86c77c582f92e708ef91e8 (diff)
Test runner should only run test-*.js
-rw-r--r--test/mjsunit/testcfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mjsunit/testcfg.py b/test/mjsunit/testcfg.py
index 662e1cdff76..5e74466acf2 100644
--- a/test/mjsunit/testcfg.py
+++ b/test/mjsunit/testcfg.py
@@ -75,7 +75,7 @@ class MjsunitTestConfiguration(test.TestConfiguration):
def Ls(self, path):
def SelectTest(name):
- return name.endswith('.js') and name != 'mjsunit.js'
+ return name.startswith('test-') and name.endswith('.js')
return [f[:-3] for f in os.listdir(path) if SelectTest(f)]
def ListTests(self, current_path, path, mode):