aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2020-08-04 02:20:15 +0000
committerKyle Evans <kevans@FreeBSD.org>2020-08-04 02:20:15 +0000
commit1546dc216f090ce326f5bbdff1211f3661643bfc (patch)
treef19fc4362a3ac1585ee7bb7fc18d769491473612 /contrib
parentb4af4f93c682e445bf159f0d1ec90b636296c946 (diff)
downloadsrc-1546dc216f090ce326f5bbdff1211f3661643bfc.tar.gz
src-1546dc216f090ce326f5bbdff1211f3661643bfc.zip
Re-enable disabled googletest-port-test tests after r363820
gtest now links against libregex here, and the tests pass locally. PR: 248452
Notes
Notes: svn path=/head/; revision=363821
Diffstat (limited to 'contrib')
-rw-r--r--contrib/googletest/googletest/test/googletest-port-test.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/contrib/googletest/googletest/test/googletest-port-test.cc b/contrib/googletest/googletest/test/googletest-port-test.cc
index 0b68d72e75bc..399316f95b63 100644
--- a/contrib/googletest/googletest/test/googletest-port-test.cc
+++ b/contrib/googletest/googletest/test/googletest-port-test.cc
@@ -403,8 +403,6 @@ typedef testing::Types<
TYPED_TEST_CASE(RETest, StringTypes);
// Tests RE's implicit constructors.
-/*
-https://bugs.freebsd.org/248452
TYPED_TEST(RETest, ImplicitConstructorWorks) {
const RE empty(TypeParam(""));
EXPECT_STREQ("", empty.pattern());
@@ -415,7 +413,6 @@ TYPED_TEST(RETest, ImplicitConstructorWorks) {
const RE normal(TypeParam(".*(\\w+)"));
EXPECT_STREQ(".*(\\w+)", normal.pattern());
}
-*/
// Tests that RE's constructors reject invalid regular expressions.
TYPED_TEST(RETest, RejectsInvalidRegex) {
@@ -864,8 +861,6 @@ TEST(MatchRegexAnywhereTest, ReturnsTrueWhenMatchingNonPrefix) {
}
// Tests RE's implicit constructors.
-/*
-https://bugs.freebsd.org/248452
TEST(RETest, ImplicitConstructorWorks) {
const RE empty("");
EXPECT_STREQ("", empty.pattern());
@@ -873,7 +868,6 @@ TEST(RETest, ImplicitConstructorWorks) {
const RE simple("hello");
EXPECT_STREQ("hello", simple.pattern());
}
-*/
// Tests that RE's constructors reject invalid regular expressions.
TEST(RETest, RejectsInvalidRegex) {