Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
19 changes: 18 additions & 1 deletion test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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."
Expand Down