File indexing completed on 2024-04-06 12:24:42
0001
0002
0003 function die { echo $1: status $2 ; exit $2; }
0004
0005 THIS_ARCH=$(echo $SCRAM_ARCH | cut -d'_' -f2)
0006 if [ "$THIS_ARCH" == "amd64" ]; then
0007 echo "has amd64"
0008 else
0009 echo "missing amd64"
0010 exit 0
0011 fi
0012
0013 if ! apptainer-check.sh; then
0014 echo "missing apptainer/singularity or missing unprivileged user namespace support"
0015 exit 0
0016 fi
0017
0018 cmsRun ${SCRAM_TEST_PATH}/DRNTest_cfg.py || die 'Failure using cmsRun' $?