mirror of
https://github.com/servo/servo.git
synced 2025-09-01 10:38:25 +01:00
Update web-platform-tests to revision 58eb04cecbbec2e18531ab440225e38944a9c444
This commit is contained in:
parent
25e8bf69e6
commit
665817d2a6
35333 changed files with 1818077 additions and 16036 deletions
74
tests/wpt/web-platform-tests/css/README.md
Normal file
74
tests/wpt/web-platform-tests/css/README.md
Normal file
|
@ -0,0 +1,74 @@
|
|||
Introduction
|
||||
------------
|
||||
|
||||
This directory contains all testsuites for all CSS specifications still using
|
||||
the [CSS test harness][harness].
|
||||
|
||||
As the test harness relies on the largely undocumented(!) old CSS build system,
|
||||
this directory has a number of test requirements specific to it:
|
||||
|
||||
* support files for a given test must live in an adjacent `support` directory;
|
||||
|
||||
* tests must have a [`<link rel=help>`][spec-link] pointing to what they are
|
||||
testing;
|
||||
|
||||
* for each spec so linked, test filenames must be unique; and
|
||||
|
||||
* support and reference files must have unique filenames within the entire
|
||||
`css` directory.
|
||||
|
||||
|
||||
Odd Directories
|
||||
---------------
|
||||
|
||||
There are a few special directories that do not map to specifications:
|
||||
|
||||
vendor-imports/ is a legacy directory where third parties historically imported
|
||||
their tests that originate and are maintained in an external repo. Files in
|
||||
this directory should never be modified in this repo, but should go through the
|
||||
vendor's process to be imported here.
|
||||
|
||||
work-in-progress/ is a legacy directory that contains all the work that was
|
||||
once submitted to the repo, but was not yet ready for review. As pull requests
|
||||
are now used, no new files should be added here. The subdirectories here are
|
||||
named by test author or contributing organization.
|
||||
|
||||
|
||||
Importing Old Branches
|
||||
----------------------
|
||||
|
||||
Given an old branch in git based against the old csswg-test
|
||||
repository, it can be moved over to the merged repo in one of two
|
||||
ways:
|
||||
|
||||
* (Recommended:) Rebasing on top of web-platform-tests: with the old
|
||||
branch checked out, run `git rebase -Xsubtree=css/ origin/master`
|
||||
(or similar, depending on the name of the upstream remote).
|
||||
|
||||
* Merging to web-platform-tests: with web-platform-tests' master
|
||||
branch checked out, run `git merge -Xsubtree=css/ my_shiny_branch`
|
||||
(or similar, depending on the name of your branch).
|
||||
|
||||
If you have a branch/bookmark in Mercurial, the process is more
|
||||
complicated:
|
||||
|
||||
1. From the Mercurial repo, run `hg export --git -r 'outgoing()' >
|
||||
foo.patch`. This will export all the changeset shown in `hg log -r
|
||||
'outgoing()'`; it's recommended you check this is the right set of
|
||||
changesets before continuing!
|
||||
|
||||
2. Move to the git repo, and create a new branch based on
|
||||
web-platform-tests' master; e.g., `git checkout -b hg-import
|
||||
origin/master` (or similar, depending on the name of the upstream
|
||||
remote).
|
||||
|
||||
3. Download [hg-patch-to-git-patch][] and run `python2
|
||||
hg-patch-to-git-patch < foo.patch > bar.patch` (where `foo.patch`
|
||||
is the path to the `foo.patch` you exported above).
|
||||
|
||||
4. Run `git am --directory=css/ < bar.patch`.
|
||||
|
||||
|
||||
[harness]: https://test.csswg.org/harness/
|
||||
[spec-link]: http://web-platform-tests.org/writing-tests/css-metadata.html#specification-links
|
||||
[hg-patch-to-git-patch]: https://raw.githubusercontent.com/mozilla/moz-git-tools/master/hg-patch-to-git-patch
|
Loading…
Add table
Add a link
Reference in a new issue