| Summary: | import-w3c-tests appears to create a redundant *-expected.html file for each *-ref.html file | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | David Kilzer (:ddkilzer) <ddkilzer> |
| Component: | Tools / Tests | Assignee: | David Kilzer (:ddkilzer) <ddkilzer> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | Normal | CC: | cdumez, gsnedders, ntim, rniwa, ryanhaddad, simon.fraser, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
David Kilzer (:ddkilzer)
2022-12-21 09:13:15 PST
Anyone know what the "expected" (*pun*) behavior is when a `*-ref.html` file exists? I'm guessing the `*-expected.html` files can be deleted, and that the `import-w3c-tests` script shouldn't be creating them. Is that correct? And for "reference" (*pun*), there are no `*-expected.html` files for `*-ref.html` files in the W3C web-platform-tests repository:
```
$ for F in `find WebKitBuild/w3c-tests/web-platform-tests -name \*-ref.html`; do G="`echo $F | sed -e 's/-ref.html/-expected.html/'`"; if [ -e $G ]; then ls -la $G; fi; done | wc -l
0
```
Pull request: https://github.com/WebKit/WebKit/pull/7971 Dupe of this: Bug 203784: Add support for finding test references via <link rel="match"> and use that in WPT *** This bug has been marked as a duplicate of bug 203784 *** |