aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJessica Paquette <jpaquette@apple.com>2018-08-14 20:50:38 +0000
committerJessica Paquette <jpaquette@apple.com>2018-08-14 20:50:38 +0000
commitc750101103126ef1c6974d7176d22358561890f8 (patch)
tree7f9f8375f3702a7ed4705e42336b77a16d9bc542
parent1384b0882dec3e0963d3f788c63d4b2f22253aa1 (diff)
Add mem_bytes to test_suite.py
Since this is already in the nts schema, and it's worth being able to track, we should have the correct mappings in test_suite.py. git-svn-id: https://llvm.org/svn/llvm-project/lnt/trunk@339725 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lnt/tests/test_suite.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lnt/tests/test_suite.py b/lnt/tests/test_suite.py
index 14f492d..c62c015 100644
--- a/lnt/tests/test_suite.py
+++ b/lnt/tests/test_suite.py
@@ -688,7 +688,8 @@ class TestSuiteTest(BuiltinTest):
'score': 'score',
'hash': 'hash',
'link_time': 'compile',
- 'size.__text': 'code_size'
+ 'size.__text': 'code_size',
+ 'mem_bytes': 'mem'
}
LIT_METRIC_CONV_FN = {
'compile_time': float,
@@ -697,6 +698,7 @@ class TestSuiteTest(BuiltinTest):
'hash': str,
'link_time': float,
'size.__text': float,
+ 'mem_bytes': float
}
# We don't use the test info, currently.