Skip to content
Snippets Groups Projects
Commit 63d080a9 authored by Daniel Brown's avatar Daniel Brown
Browse files

kat exec chmod added

parent 24703162
Branches
No related tags found
No related merge requests found
......@@ -174,8 +174,11 @@ class FinesseTestProcess(Thread):
if not os.path.exists(FINESSE_EXE):
raise Exception("Kat file was not found in " + FINESSE_EXE)
if not os.access(FINESSE_EXE, os.X_OK):
raise Exception("Kat file was not executable, could need higher privileges")
if sys.platform != "win32":
print "Trying to chmod " + FINESSE_EXE
os.chmod(FINESSE_EXE, stat.S_IXUSR)
out = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment