This repository was archived by the owner on Mar 19, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,12 @@ help:
13
13
14
14
.PHONY : help Makefile
15
15
16
- tools/wptserve :
16
+ tools/% :
17
17
mkdir -p $(shell dirname $@ )
18
- ln -s ../../tools/wptserve $@
18
+ test -d ../$@
19
+ ln -s ../../$@ $@
19
20
20
21
# Catch-all target: route all unknown targets to Sphinx using the new
21
22
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
22
- % : Makefile tools/wptserve
23
+ % : Makefile tools/wptserve tools/certs
23
24
@$(SPHINXBUILD ) -M $@ " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) $(O )
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ if errorlevel 9009 (
28
28
if not exist tools\ ( mkdir tools )
29
29
30
30
if not exist tools\wptserve\ ( mklink /d tools\wptserve ..\..\tools\wptserve )
31
+ if not exist tools\certs\ ( mklink /d tools\certs ..\..\tools\certs )
31
32
32
33
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
33
34
goto end
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ You'll need to [configure your system to use WPT's
19
19
tools] ( ../running-tests/from-local-system ) , but you won't need them until
20
20
towards the end of this tutorial. Although it includes some very brief
21
21
instructions on using git, you can find more guidance in [ the tutorial for git
22
- and GitHub] ( ../appendix /github-intro ) .
22
+ and GitHub] ( ../writing-tests /github-intro ) .
23
23
24
24
WPT's reftests are great for testing web-platform features that have some
25
25
visual effect. [ The reftests reference page] ( reftests ) describes them in the
@@ -264,7 +264,7 @@ And now we can push the commit to our fork of WPT:
264
264
The last step is to submit the test for review. WPT doesn't actually need the
265
265
test we wrote in this tutorial, but if we wanted to submit it for inclusion in
266
266
the repository, we would create a pull request on GitHub. [ The guide on git and
267
- GitHub] ( ../appendix /github-intro ) has all the details on how to do that.
267
+ GitHub] ( ../writing-tests /github-intro ) has all the details on how to do that.
268
268
269
269
## More practice
270
270
You can’t perform that action at this time.
0 commit comments