diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-20 13:15:38 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-20 16:24:25 +0100 |
commit | 04765b75fd186329755695a9afba906edfcda135 (patch) | |
tree | d67671a95a478780358ee40c3b87fda38c42efb0 /test/other_tools/git_operations | |
parent | 413d9ee4211a78a35e753bb7d6b21211ae928fbd (diff) | |
download | justbuild-04765b75fd186329755695a9afba906edfcda135.tar.gz |
Separate off id generation to a separate library
... and rename appropriately to reflect contents more precisely
than the generic "common". This separation also disentangles
dependencies a bit.
Diffstat (limited to 'test/other_tools/git_operations')
-rw-r--r-- | test/other_tools/git_operations/TARGETS | 1 | ||||
-rw-r--r-- | test/other_tools/git_operations/critical_git_ops.test.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test/other_tools/git_operations/TARGETS b/test/other_tools/git_operations/TARGETS index 77b1ee2f..26815c5a 100644 --- a/test/other_tools/git_operations/TARGETS +++ b/test/other_tools/git_operations/TARGETS @@ -7,6 +7,7 @@ [ ["@", "catch2", "", "catch2"] , ["@", "fmt", "", "fmt"] , ["@", "src", "src/buildtool/execution_api/common", "common"] + , ["@", "src", "src/buildtool/execution_api/common", "ids"] , ["@", "src", "src/buildtool/file_system", "file_system_manager"] , ["@", "src", "src/buildtool/multithreading", "task_system"] , ["@", "src", "src/other_tools/git_operations", "git_ops_types"] diff --git a/test/other_tools/git_operations/critical_git_ops.test.cpp b/test/other_tools/git_operations/critical_git_ops.test.cpp index d36dadef..66dda32e 100644 --- a/test/other_tools/git_operations/critical_git_ops.test.cpp +++ b/test/other_tools/git_operations/critical_git_ops.test.cpp @@ -25,7 +25,7 @@ #include "catch2/catch_test_macros.hpp" #include "fmt/core.h" -#include "src/buildtool/execution_api/common/execution_common.hpp" +#include "src/buildtool/execution_api/common/ids.hpp" #include "src/buildtool/file_system/file_system_manager.hpp" #include "src/buildtool/multithreading/task_system.hpp" #include "src/other_tools/git_operations/git_ops_types.hpp" |