summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/flush2.c4
-rw-r--r--test/h5test.c12
-rw-r--r--test/tvlstr.c2
3 files changed, 9 insertions, 9 deletions
diff --git a/test/flush2.c b/test/flush2.c
index f8d8aa8..6a07c78 100644
--- a/test/flush2.c
+++ b/test/flush2.c
@@ -197,7 +197,7 @@ main(void)
PASSED()
else
{
-#if defined WIN32 && defined _HDF5USEDLL_
+#if defined _WIN32 && defined _HDF5USEDLL_
SKIPPED();
puts(" DLL will flush the file even when calling _exit, skip this test temporarily");
@@ -219,7 +219,7 @@ main(void)
PASSED()
else
{
-#if defined WIN32 && defined _HDF5USEDLL_
+#if defined _WIN32 && defined _HDF5USEDLL_
SKIPPED();
puts(" DLL will flush the file even when calling _exit, skip this test temporarily");
diff --git a/test/h5test.c b/test/h5test.c
index 965c065..8e12a43 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -26,11 +26,11 @@
#include <sys/stat.h>
#include "h5test.h"
-#ifdef WIN32
+#ifdef _WIN32
#include <process.h>
#include <direct.h>
#include <winsock.h>
-#endif /* WIN32 */
+#endif /* _WIN32 */
/*
* Define these environment variables or constants to influence functions in
@@ -632,7 +632,7 @@ void
h5_show_hostname(void)
{
char hostname[80];
-#ifdef WIN32
+#ifdef _WIN32
WSADATA wsaData;
int err;
#endif
@@ -650,7 +650,7 @@ h5_show_hostname(void)
printf("thread 0.");
}
#elif defined(H5_HAVE_THREADSAFE)
-#ifdef WIN32
+#ifdef _WIN32
printf("some thread: no way to know the thread number from pthread on windows.");
#else
printf("thread %d.", (int)pthread_self());
@@ -659,7 +659,7 @@ h5_show_hostname(void)
#else
printf("thread 0.");
#endif
-#ifdef WIN32
+#ifdef _WIN32
err = WSAStartup( MAKEWORD(2,2), &wsaData );
if ( err != 0 ) {
@@ -689,7 +689,7 @@ h5_show_hostname(void)
#else
printf(" gethostname not supported\n");
#endif
-#ifdef WIN32
+#ifdef _WIN32
WSACleanup();
#endif
}
diff --git a/test/tvlstr.c b/test/tvlstr.c
index e41da26..a73151b 100644
--- a/test/tvlstr.c
+++ b/test/tvlstr.c
@@ -21,7 +21,7 @@
*
*************************************************************/
-#ifdef WIN32
+#ifdef _WIN32
#include <stdio.h>
#endif