From: Nico Weber Date: Sat, 28 Jul 2012 16:56:55 +0000 (-0700) Subject: Add a regression test for issue #380 (which fails at the moment) X-Git-Tag: v1.0.0^2~69^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ab35e5403066f48117f442f9ba8853e70edab13;p=platform%2Fupstream%2Fninja.git Add a regression test for issue #380 (which fails at the moment) --- diff --git a/src/graph_test.cc b/src/graph_test.cc index 07a1936..38ff28a 100644 --- a/src/graph_test.cc +++ b/src/graph_test.cc @@ -140,3 +140,22 @@ TEST_F(GraphTest, VarInOutQuoteSpaces) { EXPECT_EQ("cat nospace \"with space\" nospace2 > \"a b\"", edge->EvaluateCommand()); } + +// Regression test for https://github.com/martine/ninja/issues/380 +TEST_F(GraphTest, DepfileWithCanonicalizablePath) { + ASSERT_NO_FATAL_FAILURE(AssertParse(&state_, +"rule catdep\n" +" depfile = $out.d\n" +" command = cat $in > $out\n" +"build ./out.o: catdep ./foo.cc\n")); + fs_.Create("foo.cc", 1, ""); + fs_.Create("out.o.d", 1, "out.o: bar/../foo.cc\n"); + fs_.Create("out.o", 1, ""); + + Edge* edge = GetNode("out.o")->in_edge(); + string err; + EXPECT_TRUE(edge->RecomputeDirty(&state_, &fs_, &err)); + ASSERT_EQ("", err); + + EXPECT_FALSE(GetNode("out.o")->dirty()); +}