Lines Matching defs:out1
204 "build out1: cat in1\n"
500 "build out\\out1: cat src\\in1\n"
507 EXPECT_EQ(root_nodes[0]->path(), "out/out1");
511 EXPECT_EQ(root_nodes[0]->PathDecanonicalized(), "out\\out1");
551 "build out1: r in || dd\n"
557 "build out1: dyndep | out2\n"
566 Edge* edge = GetNode("out1")->in_edge();
568 EXPECT_EQ("out1", edge->outputs_[0]->path());
634 "build out1 | out-twice.imp: r in1\n"
653 "build out1: r in1 || dd1\n"
660 "build out1 | out-twice.imp: dyndep\n"
680 "build out1: r in1 || dd\n"
688 "build out1 | out1imp: dyndep | in1imp\n"
699 Edge* edge1 = GetNode("out1")->in_edge();
701 EXPECT_EQ("out1", edge1->outputs_[0]->path());
951 "build out1: touch in_ph\n"
954 fs_.Create("out1", "");
955 Node* out1 = GetNode("out1");
958 EXPECT_TRUE(scan_.RecomputeDirty(out1, NULL, &err));
959 EXPECT_TRUE(!out1->dirty());
961 // Get the mtime of out1
963 ASSERT_TRUE(out1->Stat(&fs_, &err));
964 TimeStamp out1Mtime1 = out1->mtime();
967 // Touch in1. This should cause out1 to be dirty
975 EXPECT_TRUE(scan_.RecomputeDirty(out1, NULL, &err));
977 EXPECT_EQ(out1->mtime(), out1Mtime1);
978 EXPECT_TRUE(out1->dirty());