Skip to content

Commit 947ba52

Browse files
committed
tests: only use powerpc64 on 6.13
1 parent 7449400 commit 947ba52

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/unit_tests/basic_target/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@ def run_test(kernel, arch, image):
108108
DEFAULT_KERNELS = ['4.10', '6.13']
109109
DEFAULT_ARCHES = ['armel', 'aarch64',
110110
'mipsel', 'mipseb', 'mips64el', 'mips64eb',
111-
'powerpc64', 'riscv64', 'loongarch64',
111+
'riscv64', 'loongarch64',
112112
'x86_64']
113113

114114
# architectures that only work with specific kernels
115115
NONDEFAULT_KERNEL_ARCHES = {
116-
'6.13': ['loongarch64', 'riscv64'],
116+
'6.13': ['powerpc64', 'loongarch64', 'riscv64'],
117117
}
118118

119119

tests/unit_tests/test_target/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ def run_test(kernel, arch, image):
8888
DEFAULT_KERNELS = ['4.10', '6.13']
8989
DEFAULT_ARCHES = ['armel', 'aarch64',
9090
'mipsel', 'mipseb', 'mips64el', 'mips64eb',
91-
'powerpc64', 'x86_64']
91+
'x86_64']
9292

9393
# these are the architectures that only work with certain kernels
9494
NONDEFAULT_KERNEL_ARCHES = {
95-
'6.13': ['loongarch64', 'riscv64'],
95+
'6.13': ['powerpc64', 'loongarch64', 'riscv64'],
9696
}
9797

9898

0 commit comments

Comments
 (0)