| Index: test/mjsunit/testcfg.py
|
| ===================================================================
|
| --- test/mjsunit/testcfg.py (revision 8618)
|
| +++ test/mjsunit/testcfg.py (working copy)
|
| @@ -127,13 +127,15 @@
|
| third_party = [current_path + ['third_party', t] for t in self.Ls(join(self.root, 'third_party'))]
|
| tools = [current_path + ['tools', t] for t in self.Ls(join(self.root, 'tools'))]
|
| compiler = [current_path + ['compiler', t] for t in self.Ls(join(self.root, 'compiler'))]
|
| + harmony = [current_path + ['harmony', t] for t in self.Ls(join(self.root, 'harmony'))]
|
| mjsunit.sort()
|
| regress.sort()
|
| bugs.sort()
|
| third_party.sort()
|
| tools.sort()
|
| compiler.sort()
|
| - all_tests = mjsunit + regress + bugs + third_party + tools + compiler
|
| + harmony.sort()
|
| + all_tests = mjsunit + regress + bugs + third_party + tools + compiler + harmony
|
| result = []
|
| for test in all_tests:
|
| if self.Contains(path, test):
|
|
|