We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6562e commit 6cb0e0eCopy full SHA for 6cb0e0e
test/mjsunit/testcfg.py
@@ -75,7 +75,7 @@ def __init__(self, context, root):
75
76
def Ls(self, path):
77
def SelectTest(name):
78
- return name.endswith('.js') and name != 'mjsunit.js'
+ return name.startswith('test-') and name.endswith('.js')
79
return [f[:-3] for f in os.listdir(path) if SelectTest(f)]
80
81
def ListTests(self, current_path, path, mode):
0 commit comments