Fix test rerun logic
authorPavel Labath <labath@google.com>
Wed, 13 Apr 2016 12:05:48 +0000 (12:05 +0000)
committerPavel Labath <labath@google.com>
Wed, 13 Apr 2016 12:05:48 +0000 (12:05 +0000)
commit9fb77fcfef393a3a481d2fc534b76ee22531798f
treef2fd1dfc9c74afbedab9098fa89e50f55015cf45
parent855d97e30caedfa0dea3adf8928f71b16dd8a907
Fix test rerun logic

result_formatter used inspect.getfile() to get the python file name, which returned "*.pyc" if
the bytecode file was present. This resulted in files being displayed with the wrong extension,
and more critically, would confuse the rerun logic because it would try to rerun the pyc file
(which resulted in an empty rerun list as unittest refused to run those).

Fix: use inspect.getsourcefile() instead.

I am not sure why does was not an issue before. I can only assume that some system update
tricked python into producing bytecode files more aggressively.

llvm-svn: 266192
lldb/packages/Python/lldbsuite/test/result_formatter.py