I'm making a test case, and whenever I call subprocess, I get the following error.
File "/usr/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/bin/python', 'TestRunner/TestRunner.py', '-r', '1000000']' returned non-zero exit status -11
The thing is, how I'm suppose to extract the actual error message?
I do not get anything from exit status -11.
Are there any temp file which stores the error details?
Thanks.