aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/x86/run_x86_tests.sh
blob: 3fc19b3768121ad0e3846297a17470b03d8fa4e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# This is deliberately minimal.  IMO kselftests should provide a standard
# script here.
./sigreturn_32 || exit 1
./single_step_syscall_32 || exit 1

if [[ "$uname -p" -eq "x86_64" ]]; then
    ./sigreturn_64 || exit 1
    ./single_step_syscall_64 || exit 1
fi

exit 0