Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.1-rc1 13 lines 282 B view raw
1#!/bin/bash 2 3# This is deliberately minimal. IMO kselftests should provide a standard 4# script here. 5./sigreturn_32 || exit 1 6./single_step_syscall_32 || exit 1 7 8if [[ "$uname -p" -eq "x86_64" ]]; then 9 ./sigreturn_64 || exit 1 10 ./single_step_syscall_64 || exit 1 11fi 12 13exit 0