1b89a7cc2SEnji Cooper // Copyright 2009, Google Inc.
2b89a7cc2SEnji Cooper // All rights reserved.
3b89a7cc2SEnji Cooper //
4b89a7cc2SEnji Cooper // Redistribution and use in source and binary forms, with or without
5b89a7cc2SEnji Cooper // modification, are permitted provided that the following conditions are
6b89a7cc2SEnji Cooper // met:
7b89a7cc2SEnji Cooper //
8b89a7cc2SEnji Cooper //     * Redistributions of source code must retain the above copyright
9b89a7cc2SEnji Cooper // notice, this list of conditions and the following disclaimer.
10b89a7cc2SEnji Cooper //     * Redistributions in binary form must reproduce the above
11b89a7cc2SEnji Cooper // copyright notice, this list of conditions and the following disclaimer
12b89a7cc2SEnji Cooper // in the documentation and/or other materials provided with the
13b89a7cc2SEnji Cooper // distribution.
14b89a7cc2SEnji Cooper //     * Neither the name of Google Inc. nor the names of its
15b89a7cc2SEnji Cooper // contributors may be used to endorse or promote products derived from
16b89a7cc2SEnji Cooper // this software without specific prior written permission.
17b89a7cc2SEnji Cooper //
18b89a7cc2SEnji Cooper // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19b89a7cc2SEnji Cooper // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20b89a7cc2SEnji Cooper // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21b89a7cc2SEnji Cooper // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22b89a7cc2SEnji Cooper // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23b89a7cc2SEnji Cooper // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24b89a7cc2SEnji Cooper // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25b89a7cc2SEnji Cooper // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26b89a7cc2SEnji Cooper // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27b89a7cc2SEnji Cooper // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28b89a7cc2SEnji Cooper // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29b89a7cc2SEnji Cooper 
30b89a7cc2SEnji Cooper // Tests Google Test's throw-on-failure mode with exceptions disabled.
31b89a7cc2SEnji Cooper //
32b89a7cc2SEnji Cooper // This program must be compiled with exceptions disabled.  It will be
33b89a7cc2SEnji Cooper // invoked by googletest-throw-on-failure-test.py, and is expected to exit
34b89a7cc2SEnji Cooper // with non-zero in the throw-on-failure mode or 0 otherwise.
35b89a7cc2SEnji Cooper 
36b89a7cc2SEnji Cooper #include <stdio.h>   // for fflush, fprintf, NULL, etc.
37b89a7cc2SEnji Cooper #include <stdlib.h>  // for exit
3828f6c2f2SEnji Cooper 
39b89a7cc2SEnji Cooper #include <exception>  // for set_terminate
40b89a7cc2SEnji Cooper 
4128f6c2f2SEnji Cooper #include "gtest/gtest.h"
4228f6c2f2SEnji Cooper 
43b89a7cc2SEnji Cooper // This terminate handler aborts the program using exit() rather than abort().
44b89a7cc2SEnji Cooper // This avoids showing pop-ups on Windows systems and core dumps on Unix-like
45b89a7cc2SEnji Cooper // ones.
TerminateHandler()46b89a7cc2SEnji Cooper void TerminateHandler() {
47b89a7cc2SEnji Cooper   fprintf(stderr, "%s\n", "Unhandled C++ exception terminating the program.");
4828f6c2f2SEnji Cooper   fflush(nullptr);
49b89a7cc2SEnji Cooper   exit(1);
50b89a7cc2SEnji Cooper }
51b89a7cc2SEnji Cooper 
main(int argc,char ** argv)52b89a7cc2SEnji Cooper int main(int argc, char** argv) {
53b89a7cc2SEnji Cooper #if GTEST_HAS_EXCEPTIONS
54b89a7cc2SEnji Cooper   std::set_terminate(&TerminateHandler);
55b89a7cc2SEnji Cooper #endif
56b89a7cc2SEnji Cooper   testing::InitGoogleTest(&argc, argv);
57b89a7cc2SEnji Cooper 
58b89a7cc2SEnji Cooper   // We want to ensure that people can use Google Test assertions in
59b89a7cc2SEnji Cooper   // other testing frameworks, as long as they initialize Google Test
60b89a7cc2SEnji Cooper   // properly and set the throw-on-failure mode.  Therefore, we don't
61b89a7cc2SEnji Cooper   // use Google Test's constructs for defining and running tests
62b89a7cc2SEnji Cooper   // (e.g. TEST and RUN_ALL_TESTS) here.
63b89a7cc2SEnji Cooper 
64b89a7cc2SEnji Cooper   // In the throw-on-failure mode with exceptions disabled, this
65b89a7cc2SEnji Cooper   // assertion will cause the program to exit with a non-zero code.
66b89a7cc2SEnji Cooper   EXPECT_EQ(2, 3);
67b89a7cc2SEnji Cooper 
68b89a7cc2SEnji Cooper   // When not in the throw-on-failure mode, the control will reach
69b89a7cc2SEnji Cooper   // here.
70b89a7cc2SEnji Cooper   return 0;
71b89a7cc2SEnji Cooper }
72