mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-23 22:06:19 +00:00

This is necessary to pass the lit test suite at llvm/utils/lit/tests. There are some pre-existing failures here, but now switching to pools doesn't regress any tests. I had to change test-data/lit.cfg to import DummyConfig from a module to fix pickling problems, but I think it'll be OK if we require test formats to be written in real .py modules outside lit.cfg files. I also discovered that in some circumstances AsyncResult.wait() will not raise KeyboardInterrupt in a timely manner, but you can pass a non-zero timeout to work around this. This makes threading.Condition.wait use a polling loop that runs through the interpreter, so it's capable of asynchronously raising KeyboardInterrupt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299605 91177308-0d34-0410-b5e6-96231b3b80d8
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
import os
|
|
try:
|
|
import ConfigParser
|
|
except ImportError:
|
|
import configparser as ConfigParser
|
|
|
|
import lit.formats
|
|
import lit.Test
|
|
|
|
class DummyFormat(lit.formats.FileBasedTest):
|
|
def execute(self, test, lit_config):
|
|
# In this dummy format, expect that each test file is actually just a
|
|
# .ini format dump of the results to report.
|
|
|
|
source_path = test.getSourcePath()
|
|
|
|
cfg = ConfigParser.ConfigParser()
|
|
cfg.read(source_path)
|
|
|
|
# Create the basic test result.
|
|
result_code = cfg.get('global', 'result_code')
|
|
result_output = cfg.get('global', 'result_output')
|
|
result = lit.Test.Result(getattr(lit.Test, result_code),
|
|
result_output)
|
|
|
|
# Load additional metrics.
|
|
for key,value_str in cfg.items('results'):
|
|
value = eval(value_str)
|
|
if isinstance(value, int):
|
|
metric = lit.Test.IntMetricValue(value)
|
|
elif isinstance(value, float):
|
|
metric = lit.Test.RealMetricValue(value)
|
|
else:
|
|
raise RuntimeError("unsupported result type")
|
|
result.addMetric(key, metric)
|
|
|
|
return result
|
|
|