diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/headers/test_headers.c | 3 | ||||
-rw-r--r-- | test/test_btree.c | 2 | ||||
-rw-r--r-- | test/test_hash.c | 2 | ||||
-rw-r--r-- | test/test_sem.c | 2 | ||||
-rw-r--r-- | test/test_status.c | 2 | ||||
-rw-r--r-- | test/test_tree.c | 2 |
6 files changed, 7 insertions, 6 deletions
diff --git a/test/headers/test_headers.c b/test/headers/test_headers.c index 43c5482..80a1852 100644 --- a/test/headers/test_headers.c +++ b/test/headers/test_headers.c @@ -6,11 +6,12 @@ #include "zix/bitset.h" // IWYU pragma: keep #include "zix/btree.h" // IWYU pragma: keep #include "zix/bump_allocator.h" // IWYU pragma: keep -#include "zix/common.h" // IWYU pragma: keep #include "zix/digest.h" // IWYU pragma: keep +#include "zix/function_types.h" // IWYU pragma: keep #include "zix/hash.h" // IWYU pragma: keep #include "zix/ring.h" // IWYU pragma: keep #include "zix/sem.h" // IWYU pragma: keep +#include "zix/status.h" // IWYU pragma: keep #include "zix/thread.h" // IWYU pragma: keep #include "zix/tree.h" // IWYU pragma: keep diff --git a/test/test_btree.c b/test/test_btree.c index 63224a8..259bb2a 100644 --- a/test/test_btree.c +++ b/test/test_btree.c @@ -10,7 +10,7 @@ #include "zix/allocator.h" #include "zix/attributes.h" -#include "zix/common.h" +#include "zix/status.h" #include <assert.h> #include <inttypes.h> diff --git a/test/test_hash.c b/test/test_hash.c index 287dbaa..5101aa8 100644 --- a/test/test_hash.c +++ b/test/test_hash.c @@ -11,9 +11,9 @@ #include "zix/allocator.h" #include "zix/attributes.h" -#include "zix/common.h" #include "zix/digest.h" #include "zix/hash.h" +#include "zix/status.h" #include <assert.h> #include <inttypes.h> diff --git a/test/test_sem.c b/test/test_sem.c index 9517659..0118f50 100644 --- a/test/test_sem.c +++ b/test/test_sem.c @@ -4,8 +4,8 @@ #undef NDEBUG #include "zix/attributes.h" -#include "zix/common.h" #include "zix/sem.h" +#include "zix/status.h" #include "zix/thread.h" #include <assert.h> diff --git a/test/test_status.c b/test/test_status.c index a47181c..ca47d6e 100644 --- a/test/test_status.c +++ b/test/test_status.c @@ -3,7 +3,7 @@ #undef NDEBUG -#include "zix/common.h" +#include "zix/status.h" #include <assert.h> #include <stdio.h> diff --git a/test/test_tree.c b/test/test_tree.c index 1e4173d..f227143 100644 --- a/test/test_tree.c +++ b/test/test_tree.c @@ -8,7 +8,7 @@ #include "zix/allocator.h" #include "zix/attributes.h" -#include "zix/common.h" +#include "zix/status.h" #include "zix/tree.h" #include <assert.h> |