aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/x86/entry_from_vm86.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/x86/entry_from_vm86.c')
-rw-r--r--tools/testing/selftests/x86/entry_from_vm86.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/testing/selftests/x86/entry_from_vm86.c b/tools/testing/selftests/x86/entry_from_vm86.c
index 421c607a8856..d075ea0e5ca1 100644
--- a/tools/testing/selftests/x86/entry_from_vm86.c
+++ b/tools/testing/selftests/x86/entry_from_vm86.c
@@ -230,5 +230,9 @@ int main(void)
}
clearhandler(SIGSEGV);
+ /* Make sure nothing explodes if we fork. */
+ if (fork() > 0)
+ return 0;
+
return (nerrs == 0 ? 0 : 1);
}