You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ -z "${TEMPDIR}" ]; then
TEMPDIR=$(mktemp --directory --tmpdir=/tmp -t rfm.XXXXXXXXXX)
fi
Should be changed. We should no longer use /tmp, as it doesn't work with readonly_files (that needs a shared FS). Should be replaced by something like WORKDIR.
The text was updated successfully, but these errors were encountered:
In
run_reframe.sh
, the section:Should be changed. We should no longer use
/tmp
, as it doesn't work withreadonly_files
(that needs a shared FS). Should be replaced by something likeWORKDIR
.The text was updated successfully, but these errors were encountered: