From 2941d2d60341ace7d9e52fef8f8f26b9b5eca2a6 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Sat, 29 Jul 2017 22:03:21 +0000 Subject: [PATCH] Remove superfluous `exit 0` added in r321702 atf_skip triggers equivalent functionality, which means the `exit 0` is unreachable code. PR: 220164 MFC after: 1 month MFC with: r321702 --- tests/sys/geom/class/gate/ggate_test.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/sys/geom/class/gate/ggate_test.sh b/tests/sys/geom/class/gate/ggate_test.sh index 7f853357be3..287d8c77177 100755 --- a/tests/sys/geom/class/gate/ggate_test.sh +++ b/tests/sys/geom/class/gate/ggate_test.sh @@ -209,7 +209,6 @@ load_ggate() if ! kldstat -q -m g_${class}; then if ! geom ${class} load; then atf_skip "could not load module for geom class=${class}" - exit 0 fi fi }