summaryrefslogtreecommitdiffstats
path: root/src/build_test.cc
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2013-08-23 19:20:55 (GMT)
committerNico Weber <nicolasweber@gmx.de>2013-08-23 19:20:55 (GMT)
commitde3380aab6e18f4f31653f0efa502ad31db93797 (patch)
treeaad1306e5d9bca6318d0022bd03596529d1d874a /src/build_test.cc
parenta694a746e3cb08ce0d0444c0c32fc1f7f45e6d8a (diff)
downloadNinja-de3380aab6e18f4f31653f0efa502ad31db93797.zip
Ninja-de3380aab6e18f4f31653f0efa502ad31db93797.tar.gz
Ninja-de3380aab6e18f4f31653f0efa502ad31db93797.tar.bz2
Minor style fixes, no behavior change.
Diffstat (limited to 'src/build_test.cc')
-rw-r--r--src/build_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build_test.cc b/src/build_test.cc
index 94f3994..66d0954 100644
--- a/src/build_test.cc
+++ b/src/build_test.cc
@@ -1167,7 +1167,7 @@ TEST_F(BuildWithLogTest, RestatMissingInput) {
// See that an entry in the logfile is created, capturing
// the right mtime
- BuildLog::LogEntry * log_entry = build_log_.LookupByOutput("out1");
+ BuildLog::LogEntry* log_entry = build_log_.LookupByOutput("out1");
ASSERT_TRUE(NULL != log_entry);
ASSERT_EQ(restat_mtime, log_entry->restat_mtime);
@@ -1338,7 +1338,7 @@ TEST_F(BuildWithLogTest, RspFileCmdLineChange) {
// 3. Alter the entry in the logfile
// (to simulate a change in the command line between 2 builds)
- BuildLog::LogEntry * log_entry = build_log_.LookupByOutput("out");
+ BuildLog::LogEntry* log_entry = build_log_.LookupByOutput("out");
ASSERT_TRUE(NULL != log_entry);
ASSERT_NO_FATAL_FAILURE(AssertHash(
"cat out.rsp > out;rspfile=Original very long command",