diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-11-30 14:55:26 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-11-30 14:55:26 -0500 |
| commit | 1a2d1b8d36536bec7b9b668d92aef0aac6ae1f91 (patch) | |
| tree | 869b42fe59b2cbda7c13b0d0065a5e86036002c4 | |
| parent | 8bc43ed59d24c014ccfe6ed63c6a9afd5e3b811c (diff) | |
| download | rust-1a2d1b8d36536bec7b9b668d92aef0aac6ae1f91.tar.gz rust-1a2d1b8d36536bec7b9b668d92aef0aac6ae1f91.zip | |
Re-enable testing the book
In #29932, I moved the location of TRPL, but I missed making the changes in mk/tests.mk. This led to #30088 landing with a broken example. As such, #30113 will need to land before this.
| -rw-r--r-- | mk/tests.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 3a0aee77d68..153cf9bf2fb 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -163,8 +163,8 @@ endef $(foreach doc,$(DOCS), \ $(eval $(call DOCTEST,md-$(doc),$(S)src/doc/$(doc).md))) -$(foreach file,$(wildcard $(S)src/doc/trpl/*.md), \ - $(eval $(call DOCTEST,$(file:$(S)src/doc/trpl/%.md=trpl-%),$(file)))) +$(foreach file,$(wildcard $(S)src/doc/book/*.md), \ + $(eval $(call DOCTEST,$(file:$(S)src/doc/book/%.md=book-%),$(file)))) $(foreach file,$(wildcard $(S)src/doc/nomicon/*.md), \ $(eval $(call DOCTEST,$(file:$(S)src/doc/nomicon/%.md=nomicon-%),$(file)))) ###################################################################### |
