Skip to content
Snippets Groups Projects
Commit 9711ecc3 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

MNT: Try nd make feedsRun script executable if not

parent 6bd8fd46
No related branches found
No related tags found
1 merge request!35Mnt/mkexec
...@@ -604,6 +604,13 @@ def runTest(pyf, ...@@ -604,6 +604,13 @@ def runTest(pyf,
log.debug('(Re-)Creating test output directory: %s', outputDir) log.debug('(Re-)Creating test output directory: %s', outputDir)
os.makedirs(outputDir) os.makedirs(outputDir)
# Try to make executable if not
if not os.access(test.testScript, os.X_OK):
try:
os.chmod(test.testScript, 0o755)
except Exception:
log.warning('%s is not executable!', test.testScript)
cmd = [test.testScript, outputDir, sandboxDir, benchmarkDir] cmd = [test.testScript, outputDir, sandboxDir, benchmarkDir]
cmd = [str(c) for c in cmd] cmd = [str(c) for c in cmd]
......
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