Module Name: src
Committed By: martin
Date: Tue Jan 27 12:57:14 UTC 2015
Modified Files:
src/tests/usr.bin/make: t_make.sh
Log Message:
Mark the failing tests as expected failure and point to PR toolchain/49085.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/usr.bin/make/t_make.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/usr.bin/make/t_make.sh
diff -u src/tests/usr.bin/make/t_make.sh:1.6 src/tests/usr.bin/make/t_make.sh:1.7
--- src/tests/usr.bin/make/t_make.sh:1.6 Sat Aug 23 16:26:13 2014
+++ src/tests/usr.bin/make/t_make.sh Tue Jan 27 12:57:14 2015
@@ -1,4 +1,4 @@
-# $NetBSD: t_make.sh,v 1.6 2014/08/23 16:26:13 apb Exp $
+# $NetBSD: t_make.sh,v 1.7 2015/01/27 12:57:14 martin Exp $
#
# Copyright (c) 2008, 2010, 2014 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -31,6 +31,17 @@ run_and_check()
local atfname="${1}"; shift
local makename="${1}"; shift
+ # these tests fail since the backout of the patch in PR
+ # 49085 - adjust for more concrete PR if there is one
+ case ${makename} in
+ escape) atf_expect_fail "see PR toolchain/49085";;
+ impsrc) atf_expect_fail "see PR toolchain/49085";;
+ phony*) atf_expect_fail "see PR toolchain/49085";;
+ posix1) atf_expect_fail "see PR toolchain/49085";;
+ suffixes) atf_expect_fail "see PR toolchain/49085"
+ atf_fail "this uses up all memory and then fails";;
+ esac
+
local srcdir="$(atf_get_srcdir)"
local testdir="$(atf_get_srcdir)/unit-tests"