• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1diff --git a/tools/packaging/test262.py b/tools/packaging/test262.py
2index 921360a05e..27a2938e48 100755
3--- a/tools/packaging/test262.py
4+++ b/tools/packaging/test262.py
5@@ -469,8 +469,8 @@ class TestSuite(object):
6           if self.ShouldRun(rel_path, tests):
7             basename = path.basename(full_path)[:-3]
8             name = rel_path.split(path.sep)[:-1] + [basename]
9-            if EXCLUDE_LIST.count(basename) >= 1:
10-              print 'Excluded: ' + basename
11+            if rel_path in EXCLUDE_LIST:
12+              print 'Excluded: ' + rel_path
13             else:
14               if not self.non_strict_only:
15                 strict_case = TestCase(self, name, full_path, True)
16