Module Name: src
Committed By: christos
Date: Tue Mar 8 14:21:02 UTC 2016
Modified Files:
src/tests/bin/sh: t_here.sh
Log Message:
Cleanup left over (dead) debugging code (from kre)
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/bin/sh/t_here.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/bin/sh/t_here.sh
diff -u src/tests/bin/sh/t_here.sh:1.3 src/tests/bin/sh/t_here.sh:1.4
--- src/tests/bin/sh/t_here.sh:1.3 Tue Mar 1 07:39:35 2016
+++ src/tests/bin/sh/t_here.sh Tue Mar 8 09:21:02 2016
@@ -1,4 +1,4 @@
-# $NetBSD: t_here.sh,v 1.3 2016/03/01 12:39:35 christos Exp $
+# $NetBSD: t_here.sh,v 1.4 2016/03/08 14:21:02 christos Exp $
#
# Copyright (c) 2007 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -43,12 +43,6 @@ check()
result="$( ${TEST_SH} -c "${CMD}" 2>"${TEMP_FILE}" )"
STATUS=$?
- if [ -s "${O_FILE}" ]; then
- echo >&2 "unexpected shell output noise on stdout"
- cat "${O_FILE}" >&2
- fail=true
- fi
-
if [ "${STATUS}" -ne "$3" ]; then
echo >&2 "expected exit code $3, got ${STATUS}"