summaryrefslogtreecommitdiffstats
path: root/googletest/test
diff options
context:
space:
mode:
authorMattias Ellert <mattias.ellert@physics.uu.se>2020-12-30 12:50:04 (GMT)
committerMattias Ellert <mattias.ellert@physics.uu.se>2020-12-30 12:50:04 (GMT)
commit05e9fa23f74a4766294f858c16e87a1560261340 (patch)
tree2bce593304a9293ac5d5bc0852877c92e3b6914f /googletest/test
parent6c58c11d5497b6ee1df3cb400ce30deb72fc28c0 (diff)
downloadgoogletest-05e9fa23f74a4766294f858c16e87a1560261340.zip
googletest-05e9fa23f74a4766294f858c16e87a1560261340.tar.gz
googletest-05e9fa23f74a4766294f858c16e87a1560261340.tar.bz2
Port to GNU/Hurdrefs/pull/3200/head
Diffstat (limited to 'googletest/test')
-rw-r--r--googletest/test/googletest-port-test.cc2
-rwxr-xr-xgoogletest/test/gtest_help_test.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/googletest/test/googletest-port-test.cc b/googletest/test/googletest-port-test.cc
index 4a87df0..e3ad4dd 100644
--- a/googletest/test/googletest-port-test.cc
+++ b/googletest/test/googletest-port-test.cc
@@ -280,7 +280,7 @@ TEST(FormatCompilerIndependentFileLocationTest, FormatsUknownFileAndLine) {
#if GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_QNX || GTEST_OS_FUCHSIA || \
GTEST_OS_DRAGONFLY || GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD || \
- GTEST_OS_NETBSD || GTEST_OS_OPENBSD
+ GTEST_OS_NETBSD || GTEST_OS_OPENBSD || GTEST_OS_GNU_HURD
void* ThreadFunc(void* data) {
internal::Mutex* mutex = static_cast<internal::Mutex*>(data);
mutex->Lock();
diff --git a/googletest/test/gtest_help_test.py b/googletest/test/gtest_help_test.py
index 8d953bb..54d4504 100755
--- a/googletest/test/gtest_help_test.py
+++ b/googletest/test/gtest_help_test.py
@@ -43,6 +43,7 @@ import gtest_test_utils
IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux'
+IS_GNUHURD = os.name == 'posix' and os.uname()[0] == 'GNU'
IS_GNUKFREEBSD = os.name == 'posix' and os.uname()[0] == 'GNU/kFreeBSD'
IS_WINDOWS = os.name == 'nt'
@@ -112,7 +113,7 @@ class GTestHelpTest(gtest_test_utils.TestCase):
self.assertEquals(0, exit_code)
self.assert_(HELP_REGEX.search(output), output)
- if IS_LINUX or IS_GNUKFREEBSD:
+ if IS_LINUX or IS_GNUHURD or IS_GNUKFREEBSD:
self.assert_(STREAM_RESULT_TO_FLAG in output, output)
else:
self.assert_(STREAM_RESULT_TO_FLAG not in output, output)