You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
3.4 KiB

  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. // A helper program for testing that Google Test parses the environment
  30. // variables correctly.
  31. #include <iostream>
  32. #include "gtest/gtest.h"
  33. #include "src/gtest-internal-inl.h"
  34. using ::std::cout;
  35. namespace testing {
  36. // The purpose of this is to make the test more realistic by ensuring
  37. // that the UnitTest singleton is created before main() is entered.
  38. // We don't actual run the TEST itself.
  39. TEST(GTestEnvVarTest, Dummy) {
  40. }
  41. void PrintFlag(const char* flag) {
  42. if (strcmp(flag, "break_on_failure") == 0) {
  43. cout << GTEST_FLAG(break_on_failure);
  44. return;
  45. }
  46. if (strcmp(flag, "catch_exceptions") == 0) {
  47. cout << GTEST_FLAG(catch_exceptions);
  48. return;
  49. }
  50. if (strcmp(flag, "color") == 0) {
  51. cout << GTEST_FLAG(color);
  52. return;
  53. }
  54. if (strcmp(flag, "death_test_style") == 0) {
  55. cout << GTEST_FLAG(death_test_style);
  56. return;
  57. }
  58. if (strcmp(flag, "death_test_use_fork") == 0) {
  59. cout << GTEST_FLAG(death_test_use_fork);
  60. return;
  61. }
  62. if (strcmp(flag, "filter") == 0) {
  63. cout << GTEST_FLAG(filter);
  64. return;
  65. }
  66. if (strcmp(flag, "output") == 0) {
  67. cout << GTEST_FLAG(output);
  68. return;
  69. }
  70. if (strcmp(flag, "print_time") == 0) {
  71. cout << GTEST_FLAG(print_time);
  72. return;
  73. }
  74. if (strcmp(flag, "repeat") == 0) {
  75. cout << GTEST_FLAG(repeat);
  76. return;
  77. }
  78. if (strcmp(flag, "stack_trace_depth") == 0) {
  79. cout << GTEST_FLAG(stack_trace_depth);
  80. return;
  81. }
  82. if (strcmp(flag, "throw_on_failure") == 0) {
  83. cout << GTEST_FLAG(throw_on_failure);
  84. return;
  85. }
  86. cout << "Invalid flag name " << flag
  87. << ". Valid names are break_on_failure, color, filter, etc.\n";
  88. exit(1);
  89. }
  90. } // namespace testing
  91. int main(int argc, char** argv) {
  92. testing::InitGoogleTest(&argc, argv);
  93. if (argc != 2) {
  94. cout << "Usage: googletest-env-var-test_ NAME_OF_FLAG\n";
  95. return 1;
  96. }
  97. testing::PrintFlag(argv[1]);
  98. return 0;
  99. }