Skip to content
Snippets Groups Projects
Commit b81b71ea authored by Brian Terlson's avatar Brian Terlson
Browse files

Fix packager.py for updated locations

parent 38291966
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="utf-8" ?>
<excludeList>
</excludeList>
......@@ -52,7 +52,7 @@ WEBSITE_CASES_PATH = "json/"
#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]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment