Skip to content

Commit 23f3081

Browse files
committed
Fix few more test case expectations for Linux ARM64
Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
1 parent 1205404 commit 23f3081

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

TestCases/hybrid_regression.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,7 @@ def main():
770770
pywrapper_translating_naca0012.reference_file = "forces_0.csv.ref"
771771
pywrapper_translating_naca0012.reference_file_aarch64 = "forces_0_aarch64.csv.ref"
772772
pywrapper_translating_naca0012.test_file = "forces_0.csv"
773+
pywrapper_translating_naca0012.enabled_on_cpu_arch = ["x86_64"]
773774
file_diff_list.append(pywrapper_translating_naca0012)
774775

775776
######################################

TestCases/parallel_regression.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ def main():
183183
polar_naca0012.cfg_file = "inv_NACA0012.cfg"
184184
polar_naca0012.polar = True
185185
polar_naca0012.test_iter = 10
186-
polar_naca0012.test_vals = [-1.217981, 4.256386, 0.009084, 0.016823]
186+
polar_naca0012.test_vals = [-1.217981, 4.256386, 0.009084, 0.016823]
187+
polar_naca0012.test_vals_aarch64 = [-1.530736, 3.907308, 0.008883, 0.009019]
187188
polar_naca0012.su2_exec = "compute_polar.py -i 11"
188189
polar_naca0012.timeout = 1600
189190
polar_naca0012.tol = 0.00001

TestCases/serial_regression.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ def main():
169169
polar_naca0012.polar = True
170170
polar_naca0012.new_output= True
171171
polar_naca0012.test_iter = 10
172-
polar_naca0012.test_vals = [-1.243326, 4.224483, 0.016432, 0.016145]
172+
polar_naca0012.test_vals = [-1.243326, 4.224483, 0.016432, 0.016145]
173+
polar_naca0012.test_vals_aarch64 = [-1.507073, 3.940477, 0.009995, 0.008109]
173174
polar_naca0012.su2_exec = "compute_polar.py -n 1 -i 11"
174175
polar_naca0012.timeout = 1600
175176
polar_naca0012.tol = 0.00001

0 commit comments

Comments
 (0)