From 6318fcca85c7cd3bbef1792f5a74695465e20203 Mon Sep 17 00:00:00 2001 From: xiangpengzhao Date: Fri, 3 Nov 2017 11:03:39 +0800 Subject: [PATCH] Update BUILD file to include e2e_node tests --- test/conformance/BUILD | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/conformance/BUILD b/test/conformance/BUILD index 7c11b84663c..828fb29402b 100644 --- a/test/conformance/BUILD +++ b/test/conformance/BUILD @@ -30,9 +30,12 @@ filegroup( genrule( name = "list_conformance_tests", - srcs = ["//test/e2e:all-srcs"], + srcs = [ + "//test/e2e:all-srcs", + "//test/e2e_node:all-srcs", + ], outs = ["conformance.txt"], - cmd = "./$(location :conformance) $(locations //test/e2e:all-srcs) > $@", + cmd = "./$(location :conformance) $(locations //test/e2e:all-srcs) $(locations //test/e2e_node:all-srcs) > $@", message = "Listing all conformance tests.", tools = [":conformance"], )