aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Lewis <aaronlewis () google ! com>2019-05-21 13:13:58 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2019-06-19 10:11:53 -0400
commit61cfcd545e4291d3130022e6f5f684b5d011374b (patch)
treeeca189081a9fba2ef838fb5d80bd97b34577d22a
parentb6b80c78af838bef17501416d5d383fedab0010a (diff)
kvm: tests: Sort tests in the Makefile alphabetically
Signed-off-by: Aaron Lewis <aaronlewis@google.com> Reviewed-by: Peter Shier <pshier@google.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--tools/testing/selftests/kvm/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/testing/selftests/kvm/Makefile b/tools/testing/selftests/kvm/Makefile
index 41280dc06297..8f864cfbb691 100644
--- a/tools/testing/selftests/kvm/Makefile
+++ b/tools/testing/selftests/kvm/Makefile
@@ -11,23 +11,23 @@ LIBKVM = lib/assert.c lib/elf.c lib/io.c lib/kvm_util.c lib/ucall.c lib/sparsebi
11LIBKVM_x86_64 = lib/x86_64/processor.c lib/x86_64/vmx.c 11LIBKVM_x86_64 = lib/x86_64/processor.c lib/x86_64/vmx.c
12LIBKVM_aarch64 = lib/aarch64/processor.c 12LIBKVM_aarch64 = lib/aarch64/processor.c
13 13
14TEST_GEN_PROGS_x86_64 = x86_64/platform_info_test 14TEST_GEN_PROGS_x86_64 = x86_64/cr4_cpuid_sync_test
15TEST_GEN_PROGS_x86_64 += x86_64/set_sregs_test
16TEST_GEN_PROGS_x86_64 += x86_64/sync_regs_test
17TEST_GEN_PROGS_x86_64 += x86_64/vmx_tsc_adjust_test
18TEST_GEN_PROGS_x86_64 += x86_64/cr4_cpuid_sync_test
19TEST_GEN_PROGS_x86_64 += x86_64/state_test
20TEST_GEN_PROGS_x86_64 += x86_64/evmcs_test 15TEST_GEN_PROGS_x86_64 += x86_64/evmcs_test
21TEST_GEN_PROGS_x86_64 += x86_64/hyperv_cpuid 16TEST_GEN_PROGS_x86_64 += x86_64/hyperv_cpuid
22TEST_GEN_PROGS_x86_64 += x86_64/vmx_close_while_nested_test
23TEST_GEN_PROGS_x86_64 += x86_64/smm_test
24TEST_GEN_PROGS_x86_64 += x86_64/kvm_create_max_vcpus 17TEST_GEN_PROGS_x86_64 += x86_64/kvm_create_max_vcpus
18TEST_GEN_PROGS_x86_64 += x86_64/platform_info_test
19TEST_GEN_PROGS_x86_64 += x86_64/set_sregs_test
20TEST_GEN_PROGS_x86_64 += x86_64/smm_test
21TEST_GEN_PROGS_x86_64 += x86_64/state_test
22TEST_GEN_PROGS_x86_64 += x86_64/sync_regs_test
23TEST_GEN_PROGS_x86_64 += x86_64/vmx_close_while_nested_test
25TEST_GEN_PROGS_x86_64 += x86_64/vmx_set_nested_state_test 24TEST_GEN_PROGS_x86_64 += x86_64/vmx_set_nested_state_test
26TEST_GEN_PROGS_x86_64 += dirty_log_test 25TEST_GEN_PROGS_x86_64 += x86_64/vmx_tsc_adjust_test
27TEST_GEN_PROGS_x86_64 += clear_dirty_log_test 26TEST_GEN_PROGS_x86_64 += clear_dirty_log_test
27TEST_GEN_PROGS_x86_64 += dirty_log_test
28 28
29TEST_GEN_PROGS_aarch64 += dirty_log_test
30TEST_GEN_PROGS_aarch64 += clear_dirty_log_test 29TEST_GEN_PROGS_aarch64 += clear_dirty_log_test
30TEST_GEN_PROGS_aarch64 += dirty_log_test
31 31
32TEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M)) 32TEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M))
33LIBKVM += $(LIBKVM_$(UNAME_M)) 33LIBKVM += $(LIBKVM_$(UNAME_M))