Home | History | Annotate | Download | only in src

Lines Matching full:environment

152 // The environment variable name for the test shard index.
154 // The environment variable name for the total number of test shards.
156 // The environment variable name for the test shard status file.
188 "being sent to a terminal and the TERM environment variable "
1625 // environment variable. On GNU platform this method uses wcscasecmp
2648 printf("Global test environment set-up.\n");
2722 printf("Global test environment tear-down\n");
3249 // Registers and returns a global test environment. When a test
3255 // The UnitTest object takes ownership of the given environment.
3259 Environment* UnitTest::AddEnvironment(Environment* env) {
3507 // Deletes every Environment.
3508 environments_.ForEach(internal::Delete<Environment>);
3578 // Helpers for setting up / tearing down the given environment. They
3580 static void SetUpEnvironment(Environment* env) { env->SetUp(); }
3581 static void TearDownEnvironment(Environment* env) { env->TearDown(); }
3695 // Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file
3714 "specified by the %s environment variable.\n",
3724 // environment variable values. If the variables are present,
3743 << "Invalid environment variables: you have "
3751 << "Invalid environment variables: you have "
3759 << "Invalid environment variables: we require 0 <= "
3771 // Parses the environment variable var as an Int32. If it is unset,
3781 if (!ParseInt32(Message() << "The value of environment variable " << var,
3800 // variables in the environment - see
4190 "environment variable of a flag (all letters in upper-case). For example, to\n"
4193 "@G" GTEST_FLAG_PREFIX_UPPER_ "PRINT_TIME@D environment variable to a "