Skip to content

Commit a45ad67

Browse files
committed
adding some debug messages to see if hook is properly picked up
1 parent 13ddf4e commit a45ad67

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

eb_hooks.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1581,11 +1581,15 @@ def pre_test_hook_ignore_failing_tests_LAMMPS_ARM_generic(self, *args, **kwargs)
15811581
15821582
See: https://github.com/lammps/lammps/issues/4926
15831583
"""
1584-
if self.name == 'LAMMPS' and self.version in ('22Jul2025',):
1584+
print('build option before pre_test_hooki: ', build_option('ignore_test_failure'))
1585+
if self.name == 'LAMMPS' and self.version in ('22Jul2025'):
15851586
cpu_target = get_eessi_envvar('EESSI_SOFTWARE_SUBDIR')
1587+
print('Debug: ', cpu_target)
15861588
if cpu_target == CPU_TARGET_AARCH64_GENERIC:
1589+
print('I will reset ignore_test_failure')
15871590
self.orig_ignore_test_failure = build_option('ignore_test_failure')
15881591
update_build_option('ignore_test_failure', True)
1592+
print(build_option('ignore_test_failure'))
15891593

15901594

15911595
def post_test_hook(self, *args, **kwargs):

0 commit comments

Comments
 (0)