We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 721a2da commit c1fa44fCopy full SHA for c1fa44f
testmodel.py
@@ -45,10 +45,11 @@ def writeResult():
45
def writeResultAndExit(exitStatus):
46
writeResult()
47
print("Calling exit ...")
48
+ with open(errFile, 'a+') as fp:
49
+ fp.write("[Calling os._exit(%s)]\n" % exitStatus)
50
+ fp.flush()
51
sys.stdout.flush()
52
os._exit(exitStatus)
- # calling sys.exit will hang in lock.acquire()
- # sys.exit(exitStatus)
53
54
def sendExpressionTimeout(omc, cmd, timeout):
55
with open(errFile, 'a+') as fp:
0 commit comments