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

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

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

exit 0