diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-07-02 20:40:41 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-07-08 19:17:35 +0200 |
commit | 86a947b9446b9b5d881d1a974cfe1bcde9d08f2f (patch) | |
tree | 808bfcb82223d4193f8e70b174065049aab1f67f /tests/libsqfs | |
parent | e6a19ba1a05f77f051187a6b1a828ee6d39ce052 (diff) |
Cleanup: move test.h to libutil
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libsqfs')
-rw-r--r-- | tests/libsqfs/Makemodule.am | 6 | ||||
-rw-r--r-- | tests/libsqfs/abi.c | 2 | ||||
-rw-r--r-- | tests/libsqfs/table.c | 2 | ||||
-rw-r--r-- | tests/libsqfs/xattr_writer.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/tests/libsqfs/Makemodule.am b/tests/libsqfs/Makemodule.am index 514571d..ca24caf 100644 --- a/tests/libsqfs/Makemodule.am +++ b/tests/libsqfs/Makemodule.am @@ -1,10 +1,10 @@ -test_abi_SOURCES = tests/libsqfs/abi.c tests/test.h +test_abi_SOURCES = tests/libsqfs/abi.c test_abi_LDADD = libsquashfs.la libcompat.a -test_table_SOURCES = tests/libsqfs/table.c tests/test.h +test_table_SOURCES = tests/libsqfs/table.c test_table_LDADD = libsquashfs.la libcompat.a -test_xattr_writer_SOURCES = tests/libsqfs/xattr_writer.c tests/test.h +test_xattr_writer_SOURCES = tests/libsqfs/xattr_writer.c test_xattr_writer_LDADD = libsquashfs.la libcompat.a xattr_benchmark_SOURCES = tests/libsqfs/xattr_benchmark.c diff --git a/tests/libsqfs/abi.c b/tests/libsqfs/abi.c index 3bdc4f5..0eaf5df 100644 --- a/tests/libsqfs/abi.c +++ b/tests/libsqfs/abi.c @@ -9,7 +9,7 @@ #include "sqfs/block_processor.h" #include "sqfs/compressor.h" #include "sqfs/block.h" -#include "../test.h" +#include "util/test.h" #include <stddef.h> diff --git a/tests/libsqfs/table.c b/tests/libsqfs/table.c index 5f240cc..ed373a7 100644 --- a/tests/libsqfs/table.c +++ b/tests/libsqfs/table.c @@ -6,7 +6,7 @@ */ #include "config.h" #include "compat.h" -#include "../test.h" +#include "util/test.h" #include "sqfs/compressor.h" #include "sqfs/error.h" diff --git a/tests/libsqfs/xattr_writer.c b/tests/libsqfs/xattr_writer.c index 6fa0355..dfc8966 100644 --- a/tests/libsqfs/xattr_writer.c +++ b/tests/libsqfs/xattr_writer.c @@ -6,7 +6,7 @@ */ #include "config.h" #include "compat.h" -#include "../test.h" +#include "util/test.h" #include "sqfs/xattr_writer.h" #include "sqfs/compressor.h" |