Revision: 12970 Author: [email protected] Date: Thu Nov 15 04:35:16 2012 Log: Unbreak waterfall after r12968.
[email protected] TEST=test262 Review URL: https://codereview.chromium.org/11416008 http://code.google.com/p/v8/source/detail?r=12970 Modified: /branches/bleeding_edge/test/test262/testcfg.py ======================================= --- /branches/bleeding_edge/test/test262/testcfg.py Thu Nov 15 03:41:27 2012 +++ /branches/bleeding_edge/test/test262/testcfg.py Thu Nov 15 04:35:16 2012 @@ -179,6 +179,8 @@ for root, dirs, files in os.walk(testroot): for dotted in [x for x in dirs if x.startswith('.')]: dirs.remove(dotted) + for skipped in [x for x in dirs if x in TEST_262_SKIP]: + dirs.remove(skipped) dirs.sort() root_path = root[len(self.root):].split(os.path.sep) root_path = current_path + [x for x in root_path if x] -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
