diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-02-28 13:14:23 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-02-28 13:44:06 +0100 |
commit | f06db3fcbcfed973e9366c2a667b3f71da9afec8 (patch) | |
tree | df1bad0fa2d27159596c5dd1bfd1331a26b18ad8 | |
parent | 0805693c1ef33bb83d8d21b10231d0ea20d9a74b (diff) | |
download | justbuild-f06db3fcbcfed973e9366c2a667b3f71da9afec8.tar.gz |
Test GraphTraverser: Use update-alternatives' c++ by default
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": { |