diff options
author | Michael Pratt <mpratt@google.com> | 2020-06-15 13:34:33 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-15 13:36:24 -0700 |
commit | 885605c5e412f9ced42766094368c86be1002cff (patch) | |
tree | 86b4ae8c4760406cb3aaad92092e1b8fa605ceb4 /test/runtimes/BUILD | |
parent | eb6d3d7710946c39d0ffb6e0a6307e0c2f3bd135 (diff) |
Remove blacklist from //test/runtimes
Updates #2972
PiperOrigin-RevId: 316534165
Diffstat (limited to 'test/runtimes/BUILD')
-rw-r--r-- | test/runtimes/BUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/runtimes/BUILD b/test/runtimes/BUILD index 4cd627222..022de5ff7 100644 --- a/test/runtimes/BUILD +++ b/test/runtimes/BUILD @@ -4,30 +4,30 @@ package(licenses = ["notice"]) runtime_test( name = "go1.12", - blacklist_file = "blacklist_go1.12.csv", + exclude_file = "exclude_go1.12.csv", lang = "go", ) runtime_test( name = "java11", - blacklist_file = "blacklist_java11.csv", + exclude_file = "exclude_java11.csv", lang = "java", ) runtime_test( name = "nodejs12.4.0", - blacklist_file = "blacklist_nodejs12.4.0.csv", + exclude_file = "exclude_nodejs12.4.0.csv", lang = "nodejs", ) runtime_test( name = "php7.3.6", - blacklist_file = "blacklist_php7.3.6.csv", + exclude_file = "exclude_php7.3.6.csv", lang = "php", ) runtime_test( name = "python3.7.3", - blacklist_file = "blacklist_python3.7.3.csv", + exclude_file = "exclude_python3.7.3.csv", lang = "python", ) |