diff options
author | Thomas Haller <thaller@redhat.com> | 2021-02-19 14:51:13 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2021-02-19 15:00:18 +0100 |
commit | fbcd57281a9329e8c1ee16eefe4b561a66e894f0 (patch) | |
tree | 6c734c063f863fb5be0a55c3c842c51e1430a780 /clients/common | |
parent | 2f86b47417d4827c839447bd589489fa0f6d19b4 (diff) | |
download | NetworkManager-th/move-to-src-shared.tar.gz |
shared: move "nm-test-utils.h" to "src/libnm-glib-aux/"th/move-to-src-shared
"nm-test-utils.h" is a header-only, helper library for our unit tests.
It was somewhat unmotivated in "shared/nm-utils", because all tests use
it, but it was not part of a "module".
Move it to "src/libnm-glib-aux/". It fits there very well. They both
have (only) a dependency on glib.
Diffstat (limited to 'clients/common')
-rw-r--r-- | clients/common/tests/test-clients-common.c | 2 | ||||
-rw-r--r-- | clients/common/tests/test-libnm-core-aux.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clients/common/tests/test-clients-common.c b/clients/common/tests/test-clients-common.c index 4336f0d533..9d24d1f021 100644 --- a/clients/common/tests/test-clients-common.c +++ b/clients/common/tests/test-clients-common.c @@ -9,7 +9,7 @@ #include "nm-vpn-helpers.h" #include "nm-client-utils.h" -#include "nm-utils/nm-test-utils.h" +#include "libnm-glib-aux/nm-test-utils.h" /*****************************************************************************/ diff --git a/clients/common/tests/test-libnm-core-aux.c b/clients/common/tests/test-libnm-core-aux.c index a0bfea25d2..a9bbe105bd 100644 --- a/clients/common/tests/test-libnm-core-aux.c +++ b/clients/common/tests/test-libnm-core-aux.c @@ -8,7 +8,7 @@ #include "libnm-core-aux-extern/nm-libnm-core-aux.h" #include "libnm-core-aux-intern/nm-libnm-core-utils.h" -#include "nm-utils/nm-test-utils.h" +#include "libnm-glib-aux/nm-test-utils.h" /*****************************************************************************/ |