Skip to content

Commit

Permalink
Auto merge of #30121 - steveklabnik:fix_trpl_tests, r=alexcrichton
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bors committed Nov 30, 2015
2 parents 7269f0e + 1a2d1b8 commit a2866e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mk/tests.mk
Expand Up @@ -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))))
######################################################################
Expand Down

0 comments on commit a2866e3

Please sign in to comment.