summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2011-11-09 20:47:52 +0100
committerAndreas Baumann <abaumann@yahoo.com>2011-11-09 20:47:52 +0100
commit67ae21a73302e0676fa3f0d25210c58350d89042 (patch)
tree0407d3fb01b4d52dc0f6f8f707d53cdf61e635b9 /tests
parent404e05db0773d1b7f50bf2fc1403d71328aa50e0 (diff)
downloadwolfbones-67ae21a73302e0676fa3f0d25210c58350d89042.tar.gz
wolfbones-67ae21a73302e0676fa3f0d25210c58350d89042.tar.bz2
fixed on Windows
Diffstat (limited to 'tests')
-rw-r--r--tests/port/Makefile.W322
-rw-r--r--tests/port/test_getaddrinfo.c9
-rw-r--r--tests/service/testservice.c1
3 files changed, 5 insertions, 7 deletions
diff --git a/tests/port/Makefile.W32 b/tests/port/Makefile.W32
index 22203ad..bfd895b 100644
--- a/tests/port/Makefile.W32
+++ b/tests/port/Makefile.W32
@@ -65,6 +65,6 @@ local_test:
@echo Testing itoa..
@test_itoa >NUL 2>NUL
@echo Testing getaddrinfo..
- @test_getaddrinfo >NUL 2>NUL
+ @test_getaddrinfo localhost 80 >NUL 2>NUL
@echo Testing gai_strerror_r..
@test_gai_strerror_r >NUL 2>NUL
diff --git a/tests/port/test_getaddrinfo.c b/tests/port/test_getaddrinfo.c
index 24fc19b..3de47b8 100644
--- a/tests/port/test_getaddrinfo.c
+++ b/tests/port/test_getaddrinfo.c
@@ -28,17 +28,16 @@ int main( int argc, char **argv ) {
struct addrinfo *result;
struct addrinfo *res;
int error;
+#ifdef _WIN32
+ WSADATA wsa_data;
+ WSAStartup( MAKEWORD( 2, 2 ), &wsa_data );
+#endif
if( argc != 3 ) {
fputs( "usage: test_getaddrinfo <host> <port>\n", stderr );
exit( EXIT_FAILURE );
}
-#ifdef _WIN32
- WSADATA wsa_data;
- WSAStartup( MAKEWORD( 2, 2 ), &wsa_data );
-#endif
-
/* tell getaddrinfo what we want */
memset( &hints, 0, sizeof( struct addrinfo ) );
hints.ai_flags = AI_PASSIVE;
diff --git a/tests/service/testservice.c b/tests/service/testservice.c
index e2c7b48..59e2dfd 100644
--- a/tests/service/testservice.c
+++ b/tests/service/testservice.c
@@ -18,7 +18,6 @@
#include "log/log.h" /* for logging */
#include "log/messages.h" /* for i18n */
#include "port/string.h" /* for strcasecmp */
-#include "port/gettext.h" /* for i18n */
#include "errors.h"
#include "service/service.h"