aboutsummaryrefslogtreecommitdiff
path: root/tests/common/test_helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common/test_helpers.h')
-rw-r--r--tests/common/test_helpers.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/common/test_helpers.h b/tests/common/test_helpers.h
new file mode 100644
index 0000000..f77760a
--- /dev/null
+++ b/tests/common/test_helpers.h
@@ -0,0 +1,17 @@
+/* Compatibility helpers for the test programs. */
+
+#ifndef _TEST_HELPERS_H_
+#define _TEST_HELPERS_H_
+
+#ifdef _WIN32
+#include <io.h>
+#include <fcntl.h>
+#define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
+
+#else
+#define SET_BINARY_MODE(file)
+
+#endif
+
+
+#endif