diff --git a/easystacks/software.eessi.io/2023.06/eessi-2023.06-eb-4.9.2-2022b.yml b/easystacks/software.eessi.io/2023.06/eessi-2023.06-eb-4.9.2-2022b.yml index a22b78718f..6996e6f712 100644 --- a/easystacks/software.eessi.io/2023.06/eessi-2023.06-eb-4.9.2-2022b.yml +++ b/easystacks/software.eessi.io/2023.06/eessi-2023.06-eb-4.9.2-2022b.yml @@ -6,4 +6,5 @@ easyconfigs: from-commit: d8076ebaf8cb915762adebf88d385cc672b350dc - gnuplot-5.4.6-GCCcore-12.2.0.eb - h5py-3.8.0-foss-2022b.eb - - MDAnalysis-2.4.2-foss-2022b.eb + - MDAnalysis-2.4.2-foss-2022b.eb + - patchelf-0.17.2-GCCcore-12.2.0.eb diff --git a/test_suite.sh b/test_suite.sh index 6e73fbd87c..982b67417f 100755 --- a/test_suite.sh +++ b/test_suite.sh @@ -79,6 +79,21 @@ export EESSI_SOFTWARE_SUBDIR_OVERRIDE=$(python3 $TOPDIR/eessi_software_subdir.py source $TOPDIR/init/bash +# DEBUG: only to test PR674, this code should never be merged +echo "module av patchelf/0.17.2-GCCcore-12.2.0" +module av patchelf/0.17.2-GCCcore-12.2.0 +echo "module load patchelf/0.17.2-GCCcore-12.2.0" +module load patchelf/0.17.2-GCCcore-12.2.0 +echo "module --ignore_cache load patchelf/0.17.2-GCCcore-12.2.0" +module --ignore_cache load patchelf/0.17.2-GCCcore-12.2.0 +echo "Command -v patchelf" +command -v patchelf +echo "EBROOTPATCHELF: $EBROOTPATCHELF" +echo "patchelf --version" +patchelf --version +echo "ls -al /cvmfs/software.eessi.io/versions/2023.06/software/linux/${EESSI_SOFTWARE_SUBDIR_OVERRIDE}/modules/all/patchelf/" +ls -al /cvmfs/software.eessi.io/versions/2023.06/software/linux/${EESSI_SOFTWARE_SUBDIR_OVERRIDE}/modules/all/patchelf/ + # Load the ReFrame module # Currently, we load the default version. Maybe we should somehow make this configurable in the future? module load ReFrame @@ -194,7 +209,9 @@ fi # Run all tests echo "Running tests: reframe ${REFRAME_ARGS} --run" -reframe ${REFRAME_ARGS} --run +#reframe ${REFRAME_ARGS} --run +# Make this run faster, we are not interested in the test suite anyway +reframe ${REFRAME_ARGS} --list reframe_exit_code=$? if [[ ${reframe_exit_code} -eq 0 ]]; then echo_green "ReFrame runtime ran succesfully with command: reframe ${REFRAME_ARGS} --run."