mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-27 02:43:28 +00:00
66 lines
1.7 KiB
Python
66 lines
1.7 KiB
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
test_suite(
|
|
name = "linux_tests",
|
|
tags = ["manual"],
|
|
tests = [
|
|
"//bison:bison_build_test",
|
|
"//cares:test_c_ares",
|
|
"//curl:curl_build_test",
|
|
"//gn:gn_launch_test",
|
|
"//gperftools:test",
|
|
"//libgit2:libgit2_build_test",
|
|
"//libjpeg_turbo:libjpeg_turbo_build_test",
|
|
"//libpng:test_libpng",
|
|
"//libssh2:libssh2_build_test",
|
|
"//openssl:openssl_build_test",
|
|
"//pcre:pcre_build_test",
|
|
],
|
|
)
|
|
|
|
test_suite(
|
|
name = "linux_rbe_tests",
|
|
tags = ["manual"],
|
|
tests = [
|
|
# Missing a new enough m4 to build
|
|
# "//bison:bison_build_test",
|
|
"//cares:test_c_ares",
|
|
"//curl:curl_build_test",
|
|
# Attempts to access git sha during configure of build so fails
|
|
# "//gn:gn_launch_test",
|
|
"//gperftools:test",
|
|
"//libgit2:libgit2_build_test",
|
|
"//libjpeg_turbo:libjpeg_turbo_build_test",
|
|
"//libpng:test_libpng",
|
|
"//libssh2:libssh2_build_test",
|
|
"//openssl:openssl_build_test",
|
|
"//pcre:pcre_build_test",
|
|
],
|
|
)
|
|
|
|
test_suite(
|
|
name = "macos_tests",
|
|
tags = ["manual"],
|
|
tests = [
|
|
"//cares:test_c_ares",
|
|
"//curl:curl_build_test",
|
|
"//gn:gn_launch_test",
|
|
"//gperftools:test",
|
|
"//iconv:iconv_build_test",
|
|
"//libgit2:libgit2_build_test",
|
|
"//libjpeg_turbo:libjpeg_turbo_build_test",
|
|
"//libpng:test_libpng",
|
|
"//libssh2:libssh2_build_test",
|
|
"//openssl:openssl_build_test",
|
|
"//pcre:pcre_build_test",
|
|
],
|
|
)
|
|
|
|
test_suite(
|
|
name = "windows_tests",
|
|
tags = ["manual"],
|
|
tests = [
|
|
# TODO: Add windows tests
|
|
],
|
|
)
|