diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2009-11-20 12:13:08 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-11-21 01:59:36 -0500 |
commit | 80509e27e40d7554e576405ed9f5b7966c567112 (patch) | |
tree | 69bbca41b1f93a203a0e673a882cb83b717f9254 /arch/x86/tools/Makefile | |
parent | 751386507701010831d72c522171753d2cd903d2 (diff) |
x86: Fix insn decoder test typos
Fix postest_verbose to posttest_verbose, and add posttest_64bit option
for CONFIG_64BIT != y, since old command just passed '-' instead
of '-n' when CONFIG_64BIT is not set.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Randy Dunlap <rdunlap@xenotime.net>
Cc: Jim Keniston <jkenisto@us.ibm.com>
LKML-Reference: <20091120171307.6715.66099.stgit@dhcp-100-2-132.bos.redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/tools/Makefile')
-rw-r--r-- | arch/x86/tools/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/x86/tools/Makefile b/arch/x86/tools/Makefile index 4688f90ce5a2..c80b0792cd83 100644 --- a/arch/x86/tools/Makefile +++ b/arch/x86/tools/Makefile | |||
@@ -1,13 +1,19 @@ | |||
1 | PHONY += posttest | 1 | PHONY += posttest |
2 | 2 | ||
3 | ifeq ($(KBUILD_VERBOSE),1) | 3 | ifeq ($(KBUILD_VERBOSE),1) |
4 | postest_verbose = -v | 4 | posttest_verbose = -v |
5 | else | 5 | else |
6 | postest_verbose = | 6 | posttest_verbose = |
7 | endif | ||
8 | |||
9 | ifeq ($(CONFIG_64BIT),y) | ||
10 | posttest_64bit = -y | ||
11 | else | ||
12 | posttest_64bit = -n | ||
7 | endif | 13 | endif |
8 | 14 | ||
9 | quiet_cmd_posttest = TEST $@ | 15 | quiet_cmd_posttest = TEST $@ |
10 | cmd_posttest = $(OBJDUMP) -d -j .text $(objtree)/vmlinux | awk -f $(srctree)/arch/x86/tools/distill.awk | $(obj)/test_get_len -$(CONFIG_64BIT) $(posttest_verbose) | 16 | cmd_posttest = $(OBJDUMP) -d -j .text $(objtree)/vmlinux | $(AWK) -f $(srctree)/arch/x86/tools/distill.awk | $(obj)/test_get_len $(posttest_64bit) $(posttest_verbose) |
11 | 17 | ||
12 | posttest: $(obj)/test_get_len vmlinux | 18 | posttest: $(obj)/test_get_len vmlinux |
13 | $(call cmd,posttest) | 19 | $(call cmd,posttest) |