summaryrefslogtreecommitdiff
path: root/test/inet
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-01 18:00:04 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-01 18:00:04 +0200
commit63e3a411b1e4ae6c8c9132405f80f6c6bdf90183 (patch)
treee87151f09e7b1f987ac779c8253ec6a736a80b27 /test/inet
parent23135f442dc220b496e2a4af3366cc2795587ec7 (diff)
tests: disable ether tests if !HAS_SOCKET
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test/inet')
-rw-r--r--test/inet/Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/inet/Makefile.in b/test/inet/Makefile.in
index 0c0b9dc3d..0710d3d71 100644
--- a/test/inet/Makefile.in
+++ b/test/inet/Makefile.in
@@ -3,5 +3,9 @@
#
ifeq ($(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6),)
TESTS_DISABLED := bug-if1 gethost_r-align gethostid if_nameindex tst-aton \
- tst-network tst-ntoa
+ tst-network tst-ntoa
+endif
+
+ifeq ($(UCLIBC_HAS_SOCKET)$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6),)
+TESTS_DISABLED := tst-ether_aton tst-ethers tst-ethers-line
endif