summaryrefslogtreecommitdiffstats
path: root/src/deps_log_test.cc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-04-26 18:02:08 (GMT)
committerEvan Martin <martine@danga.com>2013-04-26 18:02:08 (GMT)
commit89bc19b23d31263ea54ba1c802e4e0d03ae70118 (patch)
tree524202c3f460df30011e8abd596878f4dc54645c /src/deps_log_test.cc
parent154a51945008e7ff87fef08f1ed805ddc8946033 (diff)
downloadNinja-89bc19b23d31263ea54ba1c802e4e0d03ae70118.zip
Ninja-89bc19b23d31263ea54ba1c802e4e0d03ae70118.tar.gz
Ninja-89bc19b23d31263ea54ba1c802e4e0d03ae70118.tar.bz2
make DepsLogTest actually clean up on teardown
I think I commented this out when tracking down a bug and forgot to uncomment it.
Diffstat (limited to 'src/deps_log_test.cc')
-rw-r--r--src/deps_log_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deps_log_test.cc b/src/deps_log_test.cc
index e9cea21..0172d24 100644
--- a/src/deps_log_test.cc
+++ b/src/deps_log_test.cc
@@ -28,7 +28,7 @@ struct DepsLogTest : public testing::Test {
unlink(kTestFilename);
}
virtual void TearDown() {
- //unlink(kTestFilename);
+ unlink(kTestFilename);
}
};