Skip to content

Commit 6cb0e0e

Browse files
committed
Test runner should only run test-*.js
1 parent 6e6562e commit 6cb0e0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/mjsunit/testcfg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, context, root):
7575

7676
def Ls(self, path):
7777
def SelectTest(name):
78-
return name.endswith('.js') and name != 'mjsunit.js'
78+
return name.startswith('test-') and name.endswith('.js')
7979
return [f[:-3] for f in os.listdir(path) if SelectTest(f)]
8080

8181
def ListTests(self, current_path, path, mode):

0 commit comments

Comments
 (0)