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