[LNT] r248874 - [LNT] Update nt.py test to support NT mem_bytes
Luke Larson via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 29 19:33:06 PDT 2015
Author: llarson
Date: Tue Sep 29 21:33:05 2015
New Revision: 248874
URL: http://llvm.org/viewvc/llvm-project?rev=248874&view=rev
Log:
[LNT] Update nt.py test to support NT mem_bytes
Modified:
lnt/trunk/lnt/tests/nt.py
Modified: lnt/trunk/lnt/tests/nt.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/nt.py?rev=248874&r1=248873&r2=248874&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/nt.py (original)
+++ lnt/trunk/lnt/tests/nt.py Tue Sep 29 21:33:05 2015
@@ -1232,6 +1232,7 @@ LOCAL_EXEC_STATUS = "exec.status"
SERVER_COMPILE_RESULT = "compile_time"
SERVER_EXEC_RESULT = "execution_time"
SERVER_SCORE_RESULT = "score"
+SERVER_MEM_RESULT = "mem"
class PastRunData(object):
@@ -1354,7 +1355,9 @@ def _process_reruns(config, server_reply
if SERVER_COMPILE_RESULT in test_type:
if new_entry.compile_status is None:
new_entry.compile_status = results_status
- elif SERVER_EXEC_RESULT in test_type or SERVER_SCORE_RESULT in test_type:
+ elif SERVER_EXEC_RESULT in test_type or \
+ SERVER_SCORE_RESULT in test_type or \
+ SERVER_MEM_RESULT in test_type:
if new_entry.execution_status is None:
# If the server has not seen the test before, it will return
# None for the performance results analysis. In this case we
More information about the llvm-commits
mailing list