diff --git a/test/mjsunit/testcfg.py b/test/mjsunit/testcfg.py index 662e1cdff76d38..5e74466acf27fd 100644 --- a/test/mjsunit/testcfg.py +++ b/test/mjsunit/testcfg.py @@ -75,7 +75,7 @@ def __init__(self, context, root): 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):