diff options
author | Andy Lutomirski <luto@kernel.org> | 2015-05-11 18:11:36 -0400 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2015-05-12 22:02:40 -0400 |
commit | e9886ace222eb48bb57bd541320056ca334bd3a0 (patch) | |
tree | 11c057e7a46cff720383c099edbee96eec4b60e6 /tools/testing | |
parent | c1e6e5cb941b54c2e7e84d9a796c1ad8377f44da (diff) |
selftests, x86: Rework x86 target architecture detection
We currently fail to build on a non-multilib x86_64 target. We
print a helpful error, but it's nicer to allow the build to succeed.
Fix it and improve cross-compilation support by detecting
architecture support directly and building only the relevant tests.
Signed-off-by: Andy Lutomirski <luto@kernel.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/x86/Makefile | 55 | ||||
-rwxr-xr-x | tools/testing/selftests/x86/check_cc.sh | 16 | ||||
-rw-r--r-- | tools/testing/selftests/x86/trivial_32bit_program.c | 4 | ||||
-rw-r--r-- | tools/testing/selftests/x86/trivial_64bit_program.c | 18 |
4 files changed, 67 insertions, 26 deletions
diff --git a/tools/testing/selftests/x86/Makefile b/tools/testing/selftests/x86/Makefile index fe635399a3a6..5bdb781163d1 100644 --- a/tools/testing/selftests/x86/Makefile +++ b/tools/testing/selftests/x86/Makefile | |||
@@ -1,4 +1,8 @@ | |||
1 | .PHONY: all all_32 all_64 check_build32 clean | 1 | all: |
2 | |||
3 | include ../lib.mk | ||
4 | |||
5 | .PHONY: all all_32 all_64 warn_32bit_failure clean | ||
2 | 6 | ||
3 | TARGETS_C_BOTHBITS := sigreturn single_step_syscall | 7 | TARGETS_C_BOTHBITS := sigreturn single_step_syscall |
4 | 8 | ||
@@ -7,29 +11,24 @@ BINARIES_64 := $(TARGETS_C_BOTHBITS:%=%_64) | |||
7 | 11 | ||
8 | CFLAGS := -O2 -g -std=gnu99 -pthread -Wall | 12 | CFLAGS := -O2 -g -std=gnu99 -pthread -Wall |
9 | 13 | ||
10 | all: | ||
11 | |||
12 | UNAME_M := $(shell uname -m) | 14 | UNAME_M := $(shell uname -m) |
15 | CAN_BUILD_I386 := $(shell ./check_cc.sh $(CC) trivial_32bit_program.c -m32) | ||
16 | CAN_BUILD_X86_64 := $(shell ./check_cc.sh $(CC) trivial_64bit_program.c) | ||
13 | 17 | ||
14 | ifeq ($(CROSS_COMPILE),) | 18 | ifeq ($(CAN_BUILD_I386),1) |
15 | # Always build 32-bit tests | ||
16 | all: all_32 | 19 | all: all_32 |
17 | # Install 32-bit tests | ||
18 | TEST_PROGS += $(BINARIES_32) | 20 | TEST_PROGS += $(BINARIES_32) |
19 | # If we're on a 64-bit host, build 64-bit tests as well | 21 | endif |
20 | ifeq ($(UNAME_M),x86_64) | 22 | |
23 | ifeq ($(CAN_BUILD_X86_64),1) | ||
21 | all: all_64 | 24 | all: all_64 |
22 | # Install 64-bit tests | ||
23 | TEST_PROGS += $(BINARIES_64) | 25 | TEST_PROGS += $(BINARIES_64) |
24 | endif | 26 | endif |
25 | endif | ||
26 | 27 | ||
27 | all_32: check_build32 $(BINARIES_32) | 28 | all_32: $(BINARIES_32) |
28 | 29 | ||
29 | all_64: $(BINARIES_64) | 30 | all_64: $(BINARIES_64) |
30 | 31 | ||
31 | include ../lib.mk | ||
32 | |||
33 | clean: | 32 | clean: |
34 | $(RM) $(BINARIES_32) $(BINARIES_64) | 33 | $(RM) $(BINARIES_32) $(BINARIES_64) |
35 | 34 | ||
@@ -39,16 +38,20 @@ $(TARGETS_C_BOTHBITS:%=%_32): %_32: %.c | |||
39 | $(TARGETS_C_BOTHBITS:%=%_64): %_64: %.c | 38 | $(TARGETS_C_BOTHBITS:%=%_64): %_64: %.c |
40 | $(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl | 39 | $(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl |
41 | 40 | ||
42 | check_build32: | 41 | # x86_64 users should be encouraged to install 32-bit libraries |
43 | @if ! $(CC) -m32 -o /dev/null trivial_32bit_program.c; then \ | 42 | ifeq ($(CAN_BUILD_I386)$(CAN_BUILD_X86_64),01) |
44 | echo "Warning: you seem to have a broken 32-bit build" 2>&1; \ | 43 | all: warn_32bit_failure |
45 | echo "environment. If you are using a Debian-like"; \ | 44 | |
46 | echo " distribution, try:"; \ | 45 | warn_32bit_failure: |
47 | echo ""; \ | 46 | @echo "Warning: you seem to have a broken 32-bit build" 2>&1; \ |
48 | echo " apt-get install gcc-multilib libc6-i386 libc6-dev-i386"; \ | 47 | echo "environment. This will reduce test coverage of 64-bit" 2>&1; \ |
49 | echo ""; \ | 48 | echo "kernels. If you are using a Debian-like distribution," 2>&1; \ |
50 | echo "If you are using a Fedora-like distribution, try:"; \ | 49 | echo "try:"; 2>&1; \ |
51 | echo ""; \ | 50 | echo ""; \ |
52 | echo " yum install glibc-devel.*i686"; \ | 51 | echo " apt-get install gcc-multilib libc6-i386 libc6-dev-i386"; \ |
53 | exit 1; \ | 52 | echo ""; \ |
54 | fi | 53 | echo "If you are using a Fedora-like distribution, try:"; \ |
54 | echo ""; \ | ||
55 | echo " yum install glibc-devel.*i686"; \ | ||
56 | exit 0; | ||
57 | endif | ||
diff --git a/tools/testing/selftests/x86/check_cc.sh b/tools/testing/selftests/x86/check_cc.sh new file mode 100755 index 000000000000..172d3293fb7b --- /dev/null +++ b/tools/testing/selftests/x86/check_cc.sh | |||
@@ -0,0 +1,16 @@ | |||
1 | #!/bin/sh | ||
2 | # check_cc.sh - Helper to test userspace compilation support | ||
3 | # Copyright (c) 2015 Andrew Lutomirski | ||
4 | # GPL v2 | ||
5 | |||
6 | CC="$1" | ||
7 | TESTPROG="$2" | ||
8 | shift 2 | ||
9 | |||
10 | if "$CC" -o /dev/null "$TESTPROG" -O0 "$@" 2>/dev/null; then | ||
11 | echo 1 | ||
12 | else | ||
13 | echo 0 | ||
14 | fi | ||
15 | |||
16 | exit 0 | ||
diff --git a/tools/testing/selftests/x86/trivial_32bit_program.c b/tools/testing/selftests/x86/trivial_32bit_program.c index 2e231beb0a39..fabdf0f51621 100644 --- a/tools/testing/selftests/x86/trivial_32bit_program.c +++ b/tools/testing/selftests/x86/trivial_32bit_program.c | |||
@@ -4,6 +4,10 @@ | |||
4 | * GPL v2 | 4 | * GPL v2 |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef __i386__ | ||
8 | # error wrong architecture | ||
9 | #endif | ||
10 | |||
7 | #include <stdio.h> | 11 | #include <stdio.h> |
8 | 12 | ||
9 | int main() | 13 | int main() |
diff --git a/tools/testing/selftests/x86/trivial_64bit_program.c b/tools/testing/selftests/x86/trivial_64bit_program.c new file mode 100644 index 000000000000..b994946c40fb --- /dev/null +++ b/tools/testing/selftests/x86/trivial_64bit_program.c | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | * Trivial program to check that we have a valid 32-bit build environment. | ||
3 | * Copyright (c) 2015 Andy Lutomirski | ||
4 | * GPL v2 | ||
5 | */ | ||
6 | |||
7 | #ifndef __x86_64__ | ||
8 | # error wrong architecture | ||
9 | #endif | ||
10 | |||
11 | #include <stdio.h> | ||
12 | |||
13 | int main() | ||
14 | { | ||
15 | printf("\n"); | ||
16 | |||
17 | return 0; | ||
18 | } | ||