Module Name: src
Committed By: christos
Date: Wed Nov 17 13:41:52 UTC 2010
Modified Files:
src/tests/util/sh: t_expand.sh
Log Message:
since the fix was reverted, revert the test.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/tests/util/sh/t_expand.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/util/sh/t_expand.sh
diff -u src/tests/util/sh/t_expand.sh:1.8 src/tests/util/sh/t_expand.sh:1.9
--- src/tests/util/sh/t_expand.sh:1.8 Tue Nov 16 13:25:03 2010
+++ src/tests/util/sh/t_expand.sh Wed Nov 17 08:41:52 2010
@@ -1,4 +1,4 @@
-# $NetBSD: t_expand.sh,v 1.8 2010/11/16 18:25:03 christos Exp $
+# $NetBSD: t_expand.sh,v 1.9 2010/11/17 13:41:52 christos Exp $
#
# Copyright (c) 2007, 2009 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -86,11 +86,12 @@
strip_head() {
atf_set "descr" "Checks that the %% operator works and strips" \
"the contents of a variable from the given point" \
- "to the end PR bin/43469"
+ "to the end"
}
strip_body() {
line='#define bindir "/usr/bin" /* comment */'
stripped='#define bindir "/usr/bin" '
+ atf_expect_fail "PR bin/43469"
atf_check_equal '$stripped' '${line%%/\**}'
}