Skip to content
Snippets Groups Projects
Commit 6f40f37d authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Improved conditional execution of regtests

parent 330c717f
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,16 @@ then ...@@ -66,6 +66,16 @@ then
exit 0; exit 0;
fi fi
for need in $plumed_needs
do
echo "Checking for $need"
if ! plumed --has-$need
then
echo "NOT_APPLIABLE ($need NOT INSTALLED)"
exit 0;
fi
done
case "$type" in case "$type" in
(simplemd) (simplemd)
test -f in || { test -f in || {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment