aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorJordan Bayles <jophba@chromium.org>2020-06-25 18:59:00 -0700
committerJordan Bayles <jophba@chromium.org>2020-06-26 02:16:12 +0000
commita926fdc3321ea05723273b8d1e1d0a7b35677e42 (patch)
treecfd64950f205149271f7b60b240682c4b7f372fd /util
parent5a606b816506da8fcb4d112ae4b92152c6424718 (diff)
downloadopenscreen-a926fdc3321ea05723273b8d1e1d0a7b35677e42.tar.gz
Disable certificate utils unittests in Chrome
This patch disables the CertificateUtilTest test suite when Open Screen is built inside an embedder, due to the tests failing on the linux-fieldtrial-rel bot. Bug: b/159955844 TBR=btolsch@chromium.org Change-Id: I55e29cd06f78e29d85721196dd61da23a3833be8 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/2269061 Reviewed-by: Jordan Bayles <jophba@chromium.org>
Diffstat (limited to 'util')
-rw-r--r--util/BUILD.gn7
1 files changed, 6 insertions, 1 deletions
diff --git a/util/BUILD.gn b/util/BUILD.gn
index 000b3ea6..7eaf3d30 100644
--- a/util/BUILD.gn
+++ b/util/BUILD.gn
@@ -83,7 +83,6 @@ source_set("unittests") {
sources = [
"alarm_unittest.cc",
"big_endian_unittest.cc",
- "crypto/certificate_utils_unittest.cc",
"crypto/rsa_private_key_unittest.cc",
"crypto/secure_hash_unittest.cc",
"crypto/sha2_unittest.cc",
@@ -107,6 +106,12 @@ source_set("unittests") {
sources += [ "trace_logging_unittest.cc" ]
}
+ # TODO(http://issuetracker.google.com/159955844): test fails on fieldtrial
+ # bot, needs to be diagnosed and reenabled in Chrome.
+ if (!build_with_chromium) {
+ sources += [ "crypto/certificate_utils_unittest.cc" ]
+ }
+
deps = [
":util",
"../platform:test",