archives

« Bugzilla Issues Index

#1474 — Excludelist.xml currently only has file names with no path information


The excludelist.xml file, specifies test cases which need to be skipped/excluded. This file does not have any path information, having only the file name. Even though the file names are unique, the file names could be listed with path relative to root, to understand directory structure of skipped file, when this list gets too big.

The test harness splits the absolute path into a list and compares the last element to the exclude list.

Current Excludelist.xml:
<?xml version="1.0" encoding="utf-8" ?>
<excludeList>
<test id="10.3_a"><reason> International characters out of range </reason></test>
</excludeList>


This issue is further evidenced by the discussion at the test262-discuss mailing thread.
https://mail.mozilla.org/pipermail/test262-discuss/2013-April/000169.html

If test cases are to be renamed based on functionality or if there is any spec refactoring done, there might be cases where just one test case needs to be skipped, but other testcases with same case name (but in different sub-directory) would also be skipped if the path relative to the test directory root is not provided.