Skip to content

Commit

Permalink
Giving others x permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
Eldar Akchurin authored and eldakms committed Mar 21, 2016
1 parent a878d89 commit c5ce6e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/EndToEndTests/TestDriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def runImpl(self, flavor, device, args):
with open(logFile, "w") as output:
testScript = self.testDir + "/run-test"
st = os.stat(testScript)
os.chmod(testScript, st.st_mode | stat.S_IEXEC)
os.chmod(testScript, st.st_mode | stat.S_IEXEC | stat.S_IXOTH)
cmdLine = ["bash", "-c", self.testDir + "/run-test 2>&1"]
process = subprocess.Popen(cmdLine, stdout=subprocess.PIPE)

Expand Down

0 comments on commit c5ce6e8

Please sign in to comment.