Merging, upstream http://cl/182836545
This commit is contained in:
parent
bbb17ad0f7
commit
6723b6c588
|
@ -67,7 +67,7 @@ namespace {
|
|||
|
||||
|
||||
// Used for verifying that global environment set-up and tear-down are
|
||||
// inside the gtest_repeat loop.
|
||||
// inside the --gtest_repeat loop.
|
||||
|
||||
int g_environment_set_up_count = 0;
|
||||
int g_environment_tear_down_count = 0;
|
||||
|
|
|
@ -36,7 +36,6 @@ __author__ = 'wan@google.com (Zhanyong Wan)'
|
|||
import os
|
||||
import gtest_test_utils
|
||||
|
||||
|
||||
COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
|
||||
|
||||
|
||||
|
@ -57,8 +56,8 @@ def TestExitCodeAndOutput(command):
|
|||
|
||||
# Verifies that 'command' exits with code 1.
|
||||
p = gtest_test_utils.Subprocess(command)
|
||||
Assert(p.exited)
|
||||
AssertEq(1, p.exit_code)
|
||||
if p.exited and p.exit_code == 0:
|
||||
Assert('IMPORTANT NOTICE' in p.output);
|
||||
Assert('InitGoogleTest' in p.output)
|
||||
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
TEST(DummyTest, Dummy) {
|
||||
// This test doesn't verify anything. We just need it to create a
|
||||
// realistic stage for testing the behavior of Google Test when
|
||||
// RUN_ALL_TESTS() is called without testing::InitGoogleTest() being
|
||||
// called first.
|
||||
// RUN_ALL_TESTS() is called without
|
||||
// testing::InitGoogleTest() being called first.
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
// Verifies that the command line flag variables can be accessed
|
||||
// in code once <gtest/gtest.h> has been #included.
|
||||
// Do not move it after other #includes.
|
||||
// Verifies that the command line flag variables can be accessed in
|
||||
// code once "gtest/gtest.h" has been
|
||||
// #included. Do not move it after other gtest #includes.
|
||||
TEST(CommandLineFlagsTest, CanBeAccessedInCodeOnceGTestHIsIncluded) {
|
||||
bool dummy = testing::GTEST_FLAG(also_run_disabled_tests)
|
||||
|| testing::GTEST_FLAG(break_on_failure)
|
||||
|
|
|
@ -35,7 +35,6 @@ import gtest_test_utils
|
|||
from xml.dom import minidom, Node
|
||||
|
||||
|
||||
GTEST_OUTPUT_FLAG = '--gtest_output'
|
||||
GTEST_DEFAULT_OUTPUT_FILE = 'test_detail.xml'
|
||||
|
||||
class GTestXMLTestCase(gtest_test_utils.TestCase):
|
||||
|
|
Loading…
Reference in New Issue
Block a user