mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
This is a very minor, but annoying bit of technical debt that we have carried for over a decade. Many of the Servo-specific WPT-style tests had names that didn't match the naming convention used in WPT. In some cases tests and references were named `test_a.html` for the test and `test_b.html` for the reference. To make things more confusing, sometimes two tests in a series were named `test_a.html`, `test_b.html` and `test_ref.html` for the reference. This change makes it so that tests are named consistenty and with hyphens which are more common in WPT: - `test-001.html` - `test-002.html` - `test-ref.html` Testing: This shouldn't change results, as this just renames the test files. Fixes #2463. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
54 lines
2.0 KiB
TOML
54 lines
2.0 KiB
TOML
[configs]
|
|
skip-check-licenses = false
|
|
|
|
[ignore]
|
|
# Files that are ignored for all tidy and lint checks.
|
|
files = [
|
|
"./components/shared/net/tests/parsable_mime/text",
|
|
"./components/default-resources/resources/hsts_preload.fstmap",
|
|
"./tests/wpt/meta/MANIFEST.json",
|
|
"./tests/wpt/mozilla/meta/MANIFEST.json",
|
|
# Long encoded string
|
|
"./tests/wpt/mozilla/tests/mozilla/resources/brotli.py",
|
|
"./tests/wpt/webgl/meta/MANIFEST.json",
|
|
# Upstream code from Khronos/WebGL uses tabs for indentation
|
|
"./tests/wpt/webgl/tests",
|
|
# Vendored from upstream
|
|
"./tests/blink_perf_tests/perf_tests",
|
|
"./tests/wpt/webgpu/tests",
|
|
# Our import script is not currently respecting the lint.
|
|
"./tests/wpt/webgl/tools/import-conformance-tests.py",
|
|
# Ignore those files since the issues reported are on purpose
|
|
"./tests/html/bad-line-ends.html",
|
|
"./tests/wpt/mozilla/tests/css/fonts",
|
|
"./tests/wpt/mozilla/tests/css/pre-with-tab.html",
|
|
"./tests/wpt/mozilla/tests/mozilla/textarea-placeholder.html",
|
|
]
|
|
# Directories that are ignored for the non-WPT tidy check.
|
|
directories = [
|
|
# Test have expectations in them, causing tidy to fail.
|
|
"./support/crown/tests",
|
|
# Upstream
|
|
"./support/android/apk",
|
|
"./tests/wpt/harness",
|
|
"./tests/wpt/tests",
|
|
"./tests/wpt/mozilla/tests/mozilla/referrer-policy",
|
|
"./tests/wpt/mozilla/tests/webgl",
|
|
"./python/tidy/tests",
|
|
"./python/mach",
|
|
# Generated and upstream code combined with our own. Could use cleanup
|
|
"./target",
|
|
"./support/crown/target",
|
|
"./third_party",
|
|
"./components/script_bindings/third_party",
|
|
# Cache files generated by wptrunner which fail the EOF newlines check.
|
|
"./tests/wpt/meta/.cache",
|
|
"./tests/wpt/mozilla/meta/.cache",
|
|
"./tests/wpt/webgl/meta/.cache",
|
|
]
|
|
|
|
# Directories that are checked for correct file extension
|
|
[check_ext]
|
|
# directory, list of expected file extensions
|
|
"./components/script_bindings/webidls" = [".webidl", "noidl"]
|