Module Name: src
Committed By: pgoyette
Date: Tue Dec 28 17:33:59 UTC 2010
Modified Files:
src/tests/lib/libc/gen: Makefile
Log Message:
Don't build ldexp tests on vax
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/tests/lib/libc/gen/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/gen/Makefile
diff -u src/tests/lib/libc/gen/Makefile:1.8 src/tests/lib/libc/gen/Makefile:1.9
--- src/tests/lib/libc/gen/Makefile:1.8 Tue Dec 28 16:57:00 2010
+++ src/tests/lib/libc/gen/Makefile Tue Dec 28 17:33:58 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2010/12/28 16:57:00 pgoyette Exp $
+# $NetBSD: Makefile,v 1.9 2010/12/28 17:33:58 pgoyette Exp $
.include <bsd.own.mk>
@@ -9,7 +9,6 @@
TESTS_C+= t_fmtcheck
TESTS_C+= t_glob_star
TESTS_C+= t_humanize_number
-TESTS_C+= t_ldexp
TESTS_C+= t_rbstress
TESTS_C+= t_syslog_pthread
TESTS_C+= t_vis
@@ -22,6 +21,10 @@
TESTS_C+= t_siginfo
.endif
+.if (${MACHINE_ARCH} != "vax")
+TESTS_C+= ldexp
+.endif
+
LDADD.t_syslog_pthread+=-lpthread
.include <bsd.test.mk>