diff options
| author | Abhina Sree <69635948+abhina-sree@users.noreply.github.com> | 2024-06-06 13:30:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-06 13:30:56 -0400 |
| commit | 04acf1177ebd75b91f60edf6da67304a339cb886 (patch) | |
| tree | be0ebc5736fc13e4c338fdc896aee98f54ec0991 /third-party | |
| parent | 088b98a458b449a633e15d98ae3cead65807534e (diff) | |
[gtest] Enable zos for death test support (#94623)
This patch implements the following change to enable zos for death test
support. https://github.com/google/googletest/pull/4527
Diffstat (limited to 'third-party')
| -rw-r--r-- | third-party/unittest/googletest/include/gtest/internal/gtest-port.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/unittest/googletest/include/gtest/internal/gtest-port.h b/third-party/unittest/googletest/include/gtest/internal/gtest-port.h index a17349e40150..02e1eb0a914f 100644 --- a/third-party/unittest/googletest/include/gtest/internal/gtest-port.h +++ b/third-party/unittest/googletest/include/gtest/internal/gtest-port.h @@ -652,7 +652,7 @@ typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION; // Determines whether to support death tests. // pops up a dialog window that cannot be suppressed programmatically. #if (defined(GTEST_OS_LINUX) || defined(GTEST_OS_CYGWIN) || \ - defined(GTEST_OS_SOLARIS) || \ + defined(GTEST_OS_SOLARIS) || defined(GTEST_OS_ZOS) || \ (defined(GTEST_OS_MAC) && !defined(GTEST_OS_IOS)) || \ (defined(GTEST_OS_WINDOWS_DESKTOP) && _MSC_VER) || \ defined(GTEST_OS_WINDOWS_MINGW) || defined(GTEST_OS_AIX) || \ |
