From 1a2d1b8d36536bec7b9b668d92aef0aac6ae1f91 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Mon, 30 Nov 2015 14:55:26 -0500 Subject: [PATCH] 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. --- mk/tests.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/tests.mk b/mk/tests.mk index 3a0aee77d6805..153cf9bf2fbc1 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)))) ######################################################################