diff options
author | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-03-30 22:02:47 +0000 |
---|---|---|
committer | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-03-30 22:02:47 +0000 |
commit | 1ea6b31d5debaf2535096b1f511a605a541780ef (patch) | |
tree | ac6f5d0773cfd127db658808733a70bfe5c30ff5 /include/gtest/internal/gtest-param-util.h | |
parent | 03062e23372fe59b777d793e4ddea0d153925e4d (diff) | |
download | googletest-1ea6b31d5debaf2535096b1f511a605a541780ef.tar.gz googletest-1ea6b31d5debaf2535096b1f511a605a541780ef.tar.bz2 googletest-1ea6b31d5debaf2535096b1f511a605a541780ef.zip |
Fixes Windows CE compatibility problem (issue http://code.google.com/p/googletest/issues/detail?id=362).
Diffstat (limited to 'include/gtest/internal/gtest-param-util.h')
-rw-r--r-- | include/gtest/internal/gtest-param-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gtest/internal/gtest-param-util.h b/include/gtest/internal/gtest-param-util.h index 61c3e378..0f7b331c 100644 --- a/include/gtest/internal/gtest-param-util.h +++ b/include/gtest/internal/gtest-param-util.h @@ -579,7 +579,7 @@ class ParameterizedTestCaseRegistry { // and terminate the program since we cannot guaranty correct // test case setup and tear-down in this case. ReportInvalidTestCaseType(test_case_name, file, line); - abort(); + posix::Abort(); } else { // At this point we are sure that the object we found is of the same // type we are looking for, so we downcast it to that type |