diff options
author | shiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925> | 2008-11-24 20:13:22 +0000 |
---|---|---|
committer | shiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925> | 2008-11-24 20:13:22 +0000 |
commit | c440a6923aa65d5be64134a6f430a5867a63df3f (patch) | |
tree | 6d5be5dd4644d4c83cc5e434de31a8a4a59a3865 /src/gtest-internal-inl.h | |
parent | 514265c415e072caf92fb4eed57aacdfea9964f1 (diff) | |
download | googletest-c440a6923aa65d5be64134a6f430a5867a63df3f.tar.gz googletest-c440a6923aa65d5be64134a6f430a5867a63df3f.tar.bz2 googletest-c440a6923aa65d5be64134a6f430a5867a63df3f.zip |
Enables the Python tests to run with 2.3 (necessary for testing on Mac OS X Tiger); also fixes gtest_output_test when built with xcode.
Diffstat (limited to 'src/gtest-internal-inl.h')
-rw-r--r-- | src/gtest-internal-inl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gtest-internal-inl.h b/src/gtest-internal-inl.h index 0f2bcfba..faf9464d 100644 --- a/src/gtest-internal-inl.h +++ b/src/gtest-internal-inl.h @@ -76,6 +76,10 @@ GTEST_DECLARE_bool_(show_internal_stack_frames); namespace internal { +// The value of GetTestTypeId() as seen from within the Google Test +// library. This is solely for testing GetTestTypeId(). +extern const TypeId kTestTypeIdInGoogleTest; + // Names of the flags (needed for parsing Google Test flags). const char kBreakOnFailureFlag[] = "break_on_failure"; const char kCatchExceptionsFlag[] = "catch_exceptions"; |