summaryrefslogtreecommitdiff
path: root/tools/tests/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tests/test.h')
-rw-r--r--tools/tests/test.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/tests/test.h b/tools/tests/test.h
index 7cf2492..82b8b2c 100644
--- a/tools/tests/test.h
+++ b/tools/tests/test.h
@@ -221,6 +221,8 @@ void test_check_data_msg (CuTest *tc,
const void *refdata,
long reflen);
+#ifdef OS_UNIX
+
void test_check_symlink_msg (CuTest *tc,
const char *file,
int line,
@@ -228,6 +230,8 @@ void test_check_symlink_msg (CuTest *tc,
const char *name,
const char *destination);
+#endif /* OS_UNIX */
+
p11_dict * test_check_directory_files (const char *file,
...) GNUC_NULL_TERMINATED;
@@ -243,9 +247,13 @@ void test_check_directory_msg (CuTest *tc,
#define test_check_data(tc, directory, name, data, length) \
(test_check_data_msg (tc, __FILE__, __LINE__, directory, name, data, length))
+#ifdef OS_UNIX
+
#define test_check_symlink(tc, directory, name, destination) \
(test_check_symlink_msg (tc, __FILE__, __LINE__, directory, name, destination))
+#endif /* OS_UNIX */
+
#define test_check_directory(tc, directory, files) \
(test_check_directory_msg (tc, __FILE__, __LINE__, directory, \
test_check_directory_files files))