Add a test for quoting spaces in expanded $in and $out.
authorJeremy Apthorp <jeremya@chromium.org>
Wed, 4 Jan 2012 23:00:24 +0000 (10:00 +1100)
committerJeremy Apthorp <jeremya@chromium.org>
Wed, 4 Jan 2012 23:01:00 +0000 (10:01 +1100)
src/graph_test.cc

index c1a0f93..07a1936 100644 (file)
@@ -131,3 +131,12 @@ TEST_F(GraphTest, RootNodes) {
     EXPECT_EQ("out", name.substr(0, 3));
   }
 }
+
+TEST_F(GraphTest, VarInOutQuoteSpaces) {
+  ASSERT_NO_FATAL_FAILURE(AssertParse(&state_,
+"build a$ b: cat nospace with$ space nospace2\n"));
+
+  Edge* edge = GetNode("a b")->in_edge();
+  EXPECT_EQ("cat nospace \"with space\" nospace2 > \"a b\"",
+      edge->EvaluateCommand());
+}