Skip to content
Snippets Groups Projects
Commit fdd26d68 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

fixed missing slash

parent 9d0488a3
No related branches found
No related tags found
No related merge requests found
......@@ -238,10 +238,8 @@ def doValgrind(String label, String buildType) {
# It might be either relative to the directory the CTestTestfile.cmake is in, or absolute. Check for both.
if [ -f "\${test}" ]; then
EXECLIST="\${EXECLIST} `realpath \${test}`"
TESTDIR="\${dir}"
elif [ -f "\${dir}\${test}" ]; then
EXECLIST="\${EXECLIST} `realpath \${dir}\${test}`"
TESTDIR="\${dir}"
elif [ -f "\${dir}/\${test}" ]; then
EXECLIST="\${EXECLIST} `realpath \${dir}/\${test}`"
fi
done
......
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