mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 17:45:22 +00:00
Switch off osquery/remote tests for windows
Summary: Switch off osquery/remote tests for windows, it takes time to fix it. I'll do it later. Reviewed By: fmanco Differential Revision: D13378357 fbshipit-source-id: 21077630864fc4a27ba65078c634e115875f3970
This commit is contained in:
parent
dcf27a5956
commit
3a0683f049
@ -8,7 +8,7 @@
|
||||
|
||||
load("//tools/build_defs/oss/osquery:cxx.bzl", "osquery_cxx_library", "osquery_cxx_test")
|
||||
load("//tools/build_defs/oss/osquery:native.bzl", "osquery_target")
|
||||
load("//tools/build_defs/oss/osquery:platforms.bzl", "MACOSX", "WINDOWS")
|
||||
load("//tools/build_defs/oss/osquery:platforms.bzl", "MACOSX")
|
||||
load("//tools/build_defs/oss/osquery:third_party.bzl", "osquery_tp_target")
|
||||
|
||||
osquery_cxx_library(
|
||||
@ -51,10 +51,6 @@ osquery_cxx_test(
|
||||
MACOSX,
|
||||
["tests/plugins/tls_enroll_tests.cpp"],
|
||||
),
|
||||
(
|
||||
WINDOWS,
|
||||
["tests/plugins/tls_enroll_tests.cpp"],
|
||||
),
|
||||
],
|
||||
visibility = ["PUBLIC"],
|
||||
deps = [
|
||||
|
@ -8,6 +8,7 @@
|
||||
|
||||
load("//tools/build_defs/oss/osquery:cxx.bzl", "osquery_cxx_library", "osquery_cxx_test")
|
||||
load("//tools/build_defs/oss/osquery:native.bzl", "osquery_target")
|
||||
load("//tools/build_defs/oss/osquery:platforms.bzl", "POSIX")
|
||||
load("//tools/build_defs/oss/osquery:third_party.bzl", "osquery_tp_target")
|
||||
|
||||
osquery_cxx_library(
|
||||
@ -28,14 +29,19 @@ osquery_cxx_library(
|
||||
|
||||
osquery_cxx_test(
|
||||
name = "tests",
|
||||
srcs = [
|
||||
"tests/tls_transports_tests.cpp",
|
||||
],
|
||||
env = {
|
||||
"TEST_CONF_FILES_DIR": "$(location {})".format(
|
||||
osquery_target("tools/tests:test_files"),
|
||||
),
|
||||
},
|
||||
platform_srcs = [
|
||||
(
|
||||
POSIX,
|
||||
[
|
||||
"tests/tls_transports_tests.cpp",
|
||||
],
|
||||
),
|
||||
],
|
||||
visibility = ["PUBLIC"],
|
||||
deps = [
|
||||
osquery_target("osquery/config/tests:test_utils"),
|
||||
|
Loading…
Reference in New Issue
Block a user