diff options
author | Araq <rumpf_a@web.de> | 2014-03-28 18:15:51 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-03-28 18:15:51 +0100 |
commit | 2958adc47f201bde20deeae1f701029d3dd026ff (patch) | |
tree | 785bc4df85177591ed586cb1014aaae7c2241b42 | |
parent | 12e3c11eb67c738da564b2cfb8bb690f7e759b23 (diff) | |
download | Nim-2958adc47f201bde20deeae1f701029d3dd026ff.tar.gz |
tester outputs full test path
-rw-r--r-- | tests/testament/htmlgen.nim | 3 | ||||
-rw-r--r-- | todo.txt | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/testament/htmlgen.nim b/tests/testament/htmlgen.nim index 89d56c693..b91475aee 100644 --- a/tests/testament/htmlgen.nim +++ b/tests/testament/htmlgen.nim @@ -175,7 +175,8 @@ proc generateJson*(filename: string, commit: int) = where A.[commit] = ? and B.[commit] = ? and A.machine = ? and A.result != B.result""" selResults = """select - name, category, target, action, result, expected, given + category || '/' || target || '/' || name, + category, target, action, result, expected, given from TestResult where [commit] = ?""" var db = open(connection="testament.db", user="testament", password="", diff --git a/todo.txt b/todo.txt index 0e61a069b..982acfb62 100644 --- a/todo.txt +++ b/todo.txt @@ -19,6 +19,9 @@ Bugs version 0.9.x ============= +- pragmas need 'bindSym' support +- pragmas need re-work: 'push' is dangerous, 'hasPragma' does not work + reliably with user-defined pragmas - memory manager: add a measure of fragmentation - implement 'bits' pragmas - we need a magic thisModule symbol |