summaryrefslogtreecommitdiffstats
path: root/tests/tests.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.h')
-rw-r--r--tests/tests.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/tests.h b/tests/tests.h
index 19b7f5e..2958fe1 100644
--- a/tests/tests.h
+++ b/tests/tests.h
@@ -9,6 +9,7 @@
#define BFS_TESTS_H
#include "prelude.h"
+#include "bfstd.h"
#include "diag.h"
/** Unit test function type. */
@@ -26,6 +27,9 @@ bool check_bit(void);
/** I/O queue tests. */
bool check_ioq(void);
+/** Linked list tests. */
+bool check_list(void);
+
/** Signal hook tests. */
bool check_sighook(void);
@@ -61,7 +65,7 @@ static inline bool bfs_check(bool ret) {
* Check a condition, logging the current error string on failure.
*/
#define bfs_echeck(...) \
- bfs_echeck_(#__VA_ARGS__, __VA_ARGS__, "", bfs_errstr())
+ bfs_echeck_(#__VA_ARGS__, __VA_ARGS__, "", errstr())
#define bfs_echeck_(str, cond, format, ...) \
((cond) ? true : (bfs_diag( \