Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
gtest_env_var_test_.cc
Go to the documentation of this file.
1// Copyright 2008, Google Inc.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// * Redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above
11// copyright notice, this list of conditions and the following disclaimer
12// in the documentation and/or other materials provided with the
13// distribution.
14// * Neither the name of Google Inc. nor the names of its
15// contributors may be used to endorse or promote products derived from
16// this software without specific prior written permission.
17//
18// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29//
30// Author: wan@google.com (Zhanyong Wan)
31
32// A helper program for testing that Google Test parses the environment
33// variables correctly.
34
35#include "gtest/gtest.h"
36
37#include <iostream>
38
40
41using ::std::cout;
42
43namespace testing {
44
45// The purpose of this is to make the test more realistic by ensuring
46// that the UnitTest singleton is created before main() is entered.
47// We don't actual run the TEST itself.
48TEST(GTestEnvVarTest, Dummy) {
49}
50
51void PrintFlag(const char* flag) {
52 if (strcmp(flag, "break_on_failure") == 0) {
53 cout << GTEST_FLAG(break_on_failure);
54 return;
55 }
56
57 if (strcmp(flag, "catch_exceptions") == 0) {
58 cout << GTEST_FLAG(catch_exceptions);
59 return;
60 }
61
62 if (strcmp(flag, "color") == 0) {
63 cout << GTEST_FLAG(color);
64 return;
65 }
66
67 if (strcmp(flag, "death_test_style") == 0) {
68 cout << GTEST_FLAG(death_test_style);
69 return;
70 }
71
72 if (strcmp(flag, "death_test_use_fork") == 0) {
73 cout << GTEST_FLAG(death_test_use_fork);
74 return;
75 }
76
77 if (strcmp(flag, "filter") == 0) {
78 cout << GTEST_FLAG(filter);
79 return;
80 }
81
82 if (strcmp(flag, "output") == 0) {
83 cout << GTEST_FLAG(output);
84 return;
85 }
86
87 if (strcmp(flag, "print_time") == 0) {
88 cout << GTEST_FLAG(print_time);
89 return;
90 }
91
92 if (strcmp(flag, "repeat") == 0) {
93 cout << GTEST_FLAG(repeat);
94 return;
95 }
96
97 if (strcmp(flag, "stack_trace_depth") == 0) {
98 cout << GTEST_FLAG(stack_trace_depth);
99 return;
100 }
101
102 if (strcmp(flag, "throw_on_failure") == 0) {
103 cout << GTEST_FLAG(throw_on_failure);
104 return;
105 }
106
107 cout << "Invalid flag name " << flag
108 << ". Valid names are break_on_failure, color, filter, etc.\n";
109 exit(1);
110}
111
112} // namespace testing
113
114int main(int argc, char** argv) {
116
117 if (argc != 2) {
118 cout << "Usage: gtest_env_var_test_ NAME_OF_FLAG\n";
119 return 1;
120 }
121
123 return 0;
124}
#define GTEST_FLAG(name)
#define TEST(test_case_name, test_name)
Definition gtest.h:2275
char ** argv
void PrintFlag(const char *flag)
GTEST_API_ void InitGoogleTest(int *argc, char **argv)
Definition gtest.cc:5787