Skip to content

Commit

Permalink
Fix packager.py for updated locations
Browse files Browse the repository at this point in the history
  • Loading branch information
bterlson committed Dec 9, 2014
1 parent 3829196 commit b81b71e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions excludelist.xml
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8" ?>
<excludeList>
</excludeList>
2 changes: 1 addition & 1 deletion tools/packaging/packagerConfig.py
Expand Up @@ -52,7 +52,7 @@
#The name of a file which contains a list of tests which should be
#disabled in test262. These tests are either invalid as-per ES5 or
#have issues with the test262 web harness.
EXCLUDED_FILENAME = os.path.join(TEST262_ROOT, "test", "excludelist.xml")
EXCLUDED_FILENAME = os.path.join(TEST262_ROOT, "excludelist.xml")

WEBSITE_EXCLUDE_RE_LIST = ["bestPractice", "intl402"]
WEBSITE_EXCLUDE_RE_LIST = [ re.compile(x) for x in WEBSITE_EXCLUDE_RE_LIST]
Expand Down

0 comments on commit b81b71e

Please sign in to comment.