diff options
author | Scott Graham <scottmg@chromium.org> | 2013-04-09 17:44:54 (GMT) |
---|---|---|
committer | Scott Graham <scottmg@chromium.org> | 2013-04-09 17:44:54 (GMT) |
commit | 78effcb85dbb45633f6735e48a815bd43d5de578 (patch) | |
tree | 6e0a89d305f0f28bdcd7ba58c3b8a7b4fd9e4bfa /src | |
parent | dc4aa9fbbb8c9678ca615c3011344297f4e2fe8e (diff) | |
download | Ninja-78effcb85dbb45633f6735e48a815bd43d5de578.zip Ninja-78effcb85dbb45633f6735e48a815bd43d5de578.tar.gz Ninja-78effcb85dbb45633f6735e48a815bd43d5de578.tar.bz2 |
fix test
Diffstat (limited to 'src')
-rw-r--r-- | src/build.h | 4 | ||||
-rw-r--r-- | src/ninja_test.cc | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/build.h b/src/build.h index 9a16990..ca75ade 100644 --- a/src/build.h +++ b/src/build.h @@ -275,10 +275,6 @@ struct BuildStatus { mutable RateInfo overall_rate_; mutable SlidingRateInfo current_rate_; - -#ifdef _WIN32 - void* console_; -#endif }; #endif // NINJA_BUILD_H_ diff --git a/src/ninja_test.cc b/src/ninja_test.cc index 3376050..02f2c6b 100644 --- a/src/ninja_test.cc +++ b/src/ninja_test.cc @@ -42,7 +42,7 @@ class LaconicPrinter : public testing::EmptyTestEventListener { ++tests_started_; printer_.Print(StringPrintf("[%d/%d] %s.%s", tests_started_, test_count_, test_info.test_case_name(), test_info.name()), - LinePrinter::SHORT); + LinePrinter::ELIDE); } virtual void OnTestPartResult( |