aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/cpp')
-rw-r--r--src/main/cpp/blaze.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main/cpp/blaze.cc b/src/main/cpp/blaze.cc
index 9e9e506e62..39dff42231 100644
--- a/src/main/cpp/blaze.cc
+++ b/src/main/cpp/blaze.cc
@@ -76,9 +76,6 @@ using std::vector;
namespace blaze {
-// Blaze is being run by a test.
-static const bool TESTING = getenv("TEST_TMPDIR") != NULL;
-
extern char **environ;
////////////////////////////////////////////////////////////////////////
@@ -1403,7 +1400,7 @@ static void CheckEnvironment() {
unsetenv("_JAVA_OPTIONS");
}
- if (TESTING) {
+ if (getenv("TEST_TMPDIR") != NULL) {
fprintf(stderr, "INFO: $TEST_TMPDIR defined: output root default is "
"'%s'.\n", globals->options.output_root.c_str());
}