Module Name:    src
Committed By:   christos
Date:           Sun Mar 25 17:30:59 UTC 2012

Modified Files:
        src/tests/bin/sh: t_exit.sh

Log Message:
ksh trap has been fixed.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/bin/sh/t_exit.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_exit.sh
diff -u src/tests/bin/sh/t_exit.sh:1.1 src/tests/bin/sh/t_exit.sh:1.2
--- src/tests/bin/sh/t_exit.sh:1.1	Sat Mar 17 12:33:11 2012
+++ src/tests/bin/sh/t_exit.sh	Sun Mar 25 13:30:59 2012
@@ -1,4 +1,4 @@
-# $NetBSD: t_exit.sh,v 1.1 2012/03/17 16:33:11 jruoho Exp $
+# $NetBSD: t_exit.sh,v 1.2 2012/03/25 17:30:59 christos Exp $
 #
 # Copyright (c) 2007 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -64,9 +64,9 @@ trap_subshell_body() {
 
 atf_test_case trap_zero__implicit_exit
 trap_zero__implicit_exit_body() {
+	# PR bin/6764: sh works but ksh does not"
 	echo '( trap "echo exiting" 0 )' >helper.sh
 	atf_check -s eq:0 -o match:exiting -e empty /bin/sh helper.sh
-	atf_expect_fail "PR bin/6764: sh works but ksh does not"
 	atf_check -s eq:0 -o match:exiting -e empty /bin/ksh helper.sh
 }
 

Reply via email to