diff options
3 files changed, 3 insertions, 3 deletions
diff --git a/test/buildtool/graph_traverser/data/flaky_hello_world/graph_description b/test/buildtool/graph_traverser/data/flaky_hello_world/graph_description index 8e5ee00e..dba67f2f 100644 --- a/test/buildtool/graph_traverser/data/flaky_hello_world/graph_description +++ b/test/buildtool/graph_traverser/data/flaky_hello_world/graph_description @@ -5,7 +5,7 @@ "hello_world" ], "command": [ - "g++", "hello_world.cpp", "-o", "hello_world" + "c++", "hello_world.cpp", "-o", "hello_world" ], "input": { "hello_world.cpp": { diff --git a/test/buildtool/graph_traverser/data/hello_world_copy_message/graph_description b/test/buildtool/graph_traverser/data/hello_world_copy_message/graph_description index 829a3249..34d68f9e 100644 --- a/test/buildtool/graph_traverser/data/hello_world_copy_message/graph_description +++ b/test/buildtool/graph_traverser/data/hello_world_copy_message/graph_description @@ -5,7 +5,7 @@ "hello_world" ], "command": [ - "g++", "hello_world.cpp", "-o", "hello_world" + "c++", "hello_world.cpp", "-o", "hello_world" ], "input": { "hello_world.cpp": { diff --git a/test/buildtool/graph_traverser/data/hello_world_known_source/graph_description b/test/buildtool/graph_traverser/data/hello_world_known_source/graph_description index ae21c957..d0b23f10 100644 --- a/test/buildtool/graph_traverser/data/hello_world_known_source/graph_description +++ b/test/buildtool/graph_traverser/data/hello_world_known_source/graph_description @@ -5,7 +5,7 @@ "hello_world" ], "command": [ - "g++", "hello_world.cpp", "-o", "hello_world" + "c++", "hello_world.cpp", "-o", "hello_world" ], "input": { "hello_world.cpp": { |