Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# $NetBSD: t_trapsignal.sh,v 1.5 2019/01/26 16:44:30 martin Exp $
#
# Copyright (c) 2017 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Christos Zoulas.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#

HELPER=$(atf_get_srcdir)/h_segv

# SIGSEGV

atf_test_case segv_simple
segv_simple()
{
	atf_set "descr" "Test unhandled SIGSEGV with the right exit code"
}
segv_simple_body()
{
	atf_check -s signal:11 -o "inline:" -e "inline:" \
		${HELPER} segv recurse
}

atf_test_case segv_handle
segv_handle()
{
	atf_set "descr" "Test handled SIGSEGV traps call the signal handler"
}
segv_handle_body()
{
	atf_check -s exit:0 -o "inline:" -e "inline:got 11\n" \
		${HELPER} segv handle
}

atf_test_case segv_mask
segv_mask()
{
	atf_set "descr" "Test that masking SIGSEGV get reset"
}
segv_mask_body()
{
	atf_check -s signal:11 -o "inline:" -e "inline:" \
		${HELPER} segv mask
}

atf_test_case segv_handle_mask
segv_handle_mask()
{
	atf_set "descr" "Test handled and masked SIGSEGV traps get reset"
}
segv_handle_mask_body()
{
	atf_check -s signal:11 -o "inline:" -e "inline:" \
		${HELPER} segv mask handle
}

atf_test_case segv_handle_recurse
segv_handle_recurse()
{
	atf_set "descr" "Test that receiving SIGSEGV in the handler resets"
}

segv_handle_recurse_body()
{
	atf_check -s signal:11 -o "inline:" -e "inline:got 11\n" \
		${HELPER} segv handle recurse
}

atf_test_case segv_ignore
segv_ignore()
{
	atf_set "descr" "Test ignored SIGSEGV trap with right exit code"
}

segv_ignore_body()
{
	atf_check -s signal:11 -o "inline:" -e "inline:" \
		${HELPER} segv ignore
}

# SIGTRAP

atf_test_case trap_simple
trap_simple()
{
	atf_set "descr" "Test unhandled SIGTRAP with the right exit code"
}
trap_simple_body()
{
	atf_check -s signal:5 -o "inline:" -e "inline:" \
		${HELPER} trap recurse
}

atf_test_case trap_handle
trap_handle()
{
	atf_set "descr" "Test handled SIGTRAP traps call the signal handler"
}
trap_handle_body()
{
	atf_check -s exit:0 -o "inline:" -e "inline:got 5\n" \
		${HELPER} trap handle
}

atf_test_case trap_mask
trap_mask()
{
	atf_set "descr" "Test that masking the trapped SIGTRAP signal get reset"
}
trap_mask_body()
{
	atf_check -s signal:5 -o "inline:" -e "inline:" \
		${HELPER} trap mask
}

atf_test_case trap_handle_mask
trap_handle_mask()
{
	atf_set "descr" "Test handled and masked SIGTRAP traps get reset"
}
trap_handle_mask_body()
{
	atf_check -s signal:5 -o "inline:" -e "inline:" \
		${HELPER} trap mask handle
}

atf_test_case trap_handle_recurse
trap_handle_recurse()
{
	atf_set "descr" "Test that receiving SIGTRAP in the handler resets"
}

trap_handle_recurse_body()
{
	atf_check -s signal:5 -o "inline:" -e "inline:got 5\n" \
		${HELPER} trap handle recurse
}

atf_test_case trap_ignore
trap_ignore()
{
	atf_set "descr" "Test ignored trap with right exit code"
}

trap_ignore_body()
{
	atf_check -s signal:5 -o "inline:" -e "inline:" \
		${HELPER} trap ignore
}

# SIGFPE

fpe_available()
{
	if ${HELPER} fpe check > msg.$$
	then
		rm -f msg.$$
	else
		msg=$( cat msg.$$ )
		rm -f msg.$$
		atf_skip "$msg"
	fi
}

atf_test_case fpe_simple
fpe_simple()
{
	atf_set "descr" "Test unhandled SIGFPE with the right exit code"
}
fpe_simple_body()
{
	fpe_available
	atf_check -s signal:8 -o "inline:" -e "inline:" \
		${HELPER} fpe recurse
}

atf_test_case fpe_handle
fpe_handle()
{
	atf_set "descr" "Test handled SIGFPE traps call the signal handler"
}
fpe_handle_body()
{
	fpe_available
	atf_check -s exit:0 -o "inline:" -e "inline:got 8\n" \
		${HELPER} fpe handle
}

atf_test_case fpe_mask
fpe_mask()
{
	atf_set "descr" "Test that masking the trapped SIGFPE signal get reset"
}
fpe_mask_body()
{
	fpe_available
	atf_check -s signal:8 -o "inline:" -e "inline:" \
		${HELPER} fpe mask
}

atf_test_case fpe_handle_mask
fpe_handle_mask()
{
	atf_set "descr" "Test handled and masked SIGFPE traps get reset"
}
fpe_handle_mask_body()
{
	fpe_available
	atf_check -s signal:8 -o "inline:" -e "inline:" \
		${HELPER} fpe mask handle
}

atf_test_case fpe_handle_recurse
fpe_handle_recurse()
{
	atf_set "descr" "Test that receiving SIGFPE in the handler resets"
}

fpe_handle_recurse_body()
{
	fpe_available
	atf_check -s signal:8 -o "inline:" -e "inline:got 8\n" \
		${HELPER} fpe handle recurse
}

atf_test_case fpe_ignore
fpe_ignore()
{
	atf_set "descr" "Test ignored trap with right exit code"
}

fpe_ignore_body()
{
	fpe_available
	atf_check -s signal:8 -o "inline:" -e "inline:" \
		${HELPER} fpe ignore
}

# SIGBUS

atf_test_case bus_simple
bus_simple()
{
	atf_set "descr" "Test unhandled SIGBUS with the right exit code"
}
bus_simple_body()
{
	atf_check -s signal:10 -o "inline:" -e "inline:" \
		${HELPER} bus recurse
}

atf_test_case bus_handle
bus_handle()
{
	atf_set "descr" "Test handled SIGBUS traps call the signal handler"
}
bus_handle_body()
{
	atf_check -s exit:0 -o "inline:" -e "inline:got 10\n" \
		${HELPER} bus handle
}

atf_test_case bus_mask
bus_mask()
{
	atf_set "descr" "Test that masking the trapped SIGBUS signal get reset"
}
bus_mask_body()
{
	atf_check -s signal:10 -o "inline:" -e "inline:" \
		${HELPER} bus mask
}

atf_test_case bus_handle_mask
bus_handle_mask()
{
	atf_set "descr" "Test handled and masked SIGBUS traps get reset"
}
bus_handle_mask_body()
{
	atf_check -s signal:10 -o "inline:" -e "inline:" \
		${HELPER} bus mask handle
}

atf_test_case bus_handle_recurse
bus_handle_recurse()
{
	atf_set "descr" "Test that receiving SIGBUS in the handler resets"
}

bus_handle_recurse_body()
{
	atf_check -s signal:10 -o "inline:" -e "inline:got 10\n" \
		${HELPER} bus handle recurse
}

atf_test_case bus_ignore
bus_ignore()
{
	atf_set "descr" "Test ignored trap with right exit code"
}

bus_ignore_body()
{
	atf_check -s signal:10 -o "inline:" -e "inline:" \
		${HELPER} bus ignore
}

atf_init_test_cases()
{
	atf_add_test_case segv_simple
	atf_add_test_case segv_handle
	atf_add_test_case segv_mask
	atf_add_test_case segv_handle_recurse
	atf_add_test_case segv_ignore

	atf_add_test_case trap_simple
	atf_add_test_case trap_handle
	atf_add_test_case trap_mask
	atf_add_test_case trap_handle_recurse
	atf_add_test_case trap_ignore

#	atf_add_test_case ill_simple
#	atf_add_test_case ill_handle
#	atf_add_test_case ill_mask
#	atf_add_test_case ill_handle_recurse
#	atf_add_test_case ill_ignore

	atf_add_test_case fpe_simple
	atf_add_test_case fpe_handle
	atf_add_test_case fpe_mask
	atf_add_test_case fpe_handle_recurse
	atf_add_test_case fpe_ignore

	atf_add_test_case bus_simple
	atf_add_test_case bus_handle
	atf_add_test_case bus_mask
	atf_add_test_case bus_handle_recurse
	atf_add_test_case bus_ignore
}