1*d4726bddSHONG Yifanload("//rust:defs.bzl", "rust_test") 2*d4726bddSHONG Yifan 3*d4726bddSHONG Yifan[ 4*d4726bddSHONG Yifan rust_test( 5*d4726bddSHONG Yifan name = "proc_macro_{}_integration_test".format(edition), 6*d4726bddSHONG Yifan srcs = ["proc_macro_{}_test.rs".format(edition)], 7*d4726bddSHONG Yifan edition = edition, 8*d4726bddSHONG Yifan proc_macro_deps = ["//test/unit/proc_macro:proc_macro_{}".format(edition)], 9*d4726bddSHONG Yifan ) 10*d4726bddSHONG Yifan for edition in [ 11*d4726bddSHONG Yifan "2015", 12*d4726bddSHONG Yifan "2018", 13*d4726bddSHONG Yifan ] 14*d4726bddSHONG Yifan] 15