Module Name: src Committed By: joerg Date: Mon Jul 10 21:43:33 UTC 2017
Modified Files: src/tests/lib/libc/stdlib: t_atexit.sh Log Message: Reference correct binary in error messages. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/stdlib/t_atexit.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/lib/libc/stdlib/t_atexit.sh diff -u src/tests/lib/libc/stdlib/t_atexit.sh:1.1 src/tests/lib/libc/stdlib/t_atexit.sh:1.2 --- src/tests/lib/libc/stdlib/t_atexit.sh:1.1 Wed Jan 12 19:44:08 2011 +++ src/tests/lib/libc/stdlib/t_atexit.sh Mon Jul 10 21:43:33 2017 @@ -1,4 +1,4 @@ -# $NetBSD: t_atexit.sh,v 1.1 2011/01/12 19:44:08 pgoyette Exp $ +# $NetBSD: t_atexit.sh,v 1.2 2017/07/10 21:43:33 joerg Exp $ # # Copyright (c) 2011 The NetBSD Foundation, Inc. # All rights reserved. @@ -33,7 +33,7 @@ atexit_head() atexit_body() { $(atf_get_srcdir)/h_atexit >out \ - || atf_fail "h_exit failed, see output of the test for details" + || atf_fail "h_atexit failed, see output of the test for details" cat >exp <<EOF cxa_handler_5 @@ -45,7 +45,7 @@ normal_handler_0 EOF diff -Nru exp out \ - || atf_fail "h_exit failed, see output of the test for details" + || atf_fail "h_atexit failed, see output of the test for details" } atf_init_test_cases()