mirror of https://github.com/tc39/test262.git
Fix packager.py for updated locations
This commit is contained in:
parent
38291966ff
commit
b81b71eac2
|
@ -0,0 +1,3 @@
|
||||||
|
<?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
|
#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
|
#disabled in test262. These tests are either invalid as-per ES5 or
|
||||||
#have issues with the test262 web harness.
|
#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 = ["bestPractice", "intl402"]
|
||||||
WEBSITE_EXCLUDE_RE_LIST = [ re.compile(x) for x in WEBSITE_EXCLUDE_RE_LIST]
|
WEBSITE_EXCLUDE_RE_LIST = [ re.compile(x) for x in WEBSITE_EXCLUDE_RE_LIST]
|
||||||
|
|
Loading…
Reference in New Issue