summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-05-02 19:18:35 (GMT)
committerEvan Martin <martine@danga.com>2011-05-02 19:18:35 (GMT)
commit93817e544f18c54d8e8da6d5d3a457e94911b5f1 (patch)
treebe1b523277f1084d1fd7b96ea931b803f306a93d /src
parent037cd8bfb32540502730f4990eede1cef1fa64ca (diff)
downloadNinja-93817e544f18c54d8e8da6d5d3a457e94911b5f1.zip
Ninja-93817e544f18c54d8e8da6d5d3a457e94911b5f1.tar.gz
Ninja-93817e544f18c54d8e8da6d5d3a457e94911b5f1.tar.bz2
fix unit test
Diffstat (limited to 'src')
-rw-r--r--src/ninja.h2
-rw-r--r--src/ninja_test.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ninja.h b/src/ninja.h
index 8927768..b73d7be 100644
--- a/src/ninja.h
+++ b/src/ninja.h
@@ -52,7 +52,7 @@ struct DiskInterface {
/// Remove the file named @a path. It behaves like 'rm -f path' so no errors
/// are reported if it does not exists.
/// @returns 0 if the file has been removed,
- /// 1 if the file does not exists, and
+ /// 1 if the file does not exist, and
/// -1 if an error occurs.
virtual int RemoveFile(const string& path) = 0;
diff --git a/src/ninja_test.cc b/src/ninja_test.cc
index 8d53343..ed22709 100644
--- a/src/ninja_test.cc
+++ b/src/ninja_test.cc
@@ -264,5 +264,5 @@ TEST_F(DiskInterfaceTest, RemoveFile) {
ASSERT_EQ(0, system(cmd.c_str()));
EXPECT_EQ(0, disk_.RemoveFile(kFileName));
EXPECT_EQ(1, disk_.RemoveFile(kFileName));
- EXPECT_EQ(-1, disk_.RemoveFile("does not exist"));
+ EXPECT_EQ(1, disk_.RemoveFile("does not exist"));
}