Update BUILD file to include e2e_node tests

This commit is contained in:
xiangpengzhao 2017-11-03 11:03:39 +08:00
parent 025f946784
commit 6318fcca85

View File

@ -30,9 +30,12 @@ filegroup(
genrule( genrule(
name = "list_conformance_tests", name = "list_conformance_tests",
srcs = ["//test/e2e:all-srcs"], srcs = [
"//test/e2e:all-srcs",
"//test/e2e_node:all-srcs",
],
outs = ["conformance.txt"], 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.", message = "Listing all conformance tests.",
tools = [":conformance"], tools = [":conformance"],
) )