diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-09-11 13:36:35 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-11 13:36:35 +0200 |
commit | c55ceafd9a439e545d985b540065ac2f94c80d64 (patch) | |
tree | bfc737827c42efb5de8b5afb22b1770cf61533fa /testament | |
parent | 99425ff21dc758c8cb9abc3ddbe44ed2025906f0 (diff) | |
download | Nim-c55ceafd9a439e545d985b540065ac2f94c80d64.tar.gz |
add tensordsl test (#12166)
* add tensordsl test * simpler
Diffstat (limited to 'testament')
-rw-r--r-- | testament/categories.nim | 1 | ||||
-rw-r--r-- | testament/important_packages.nim | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index 6e885966e..1b785776f 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -506,6 +506,7 @@ proc testNimblePackages(r: var TResults, cat: Category) = else: inc r.passed r.addResult(test, targetC, "", "", reSuccess) + errors = r.total - r.passed if errors == 0: r.addResult(packageFileTest, targetC, "", "", reSuccess) diff --git a/testament/important_packages.nim b/testament/important_packages.nim index 0b21547c3..5455b5fa4 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -82,3 +82,4 @@ pkg "with" pkg "ws" pkg "yaml" pkg "zero_functional", "nim c -r test.nim" +pkg "tensordsl", "nim c -r tests/tests.nim", false, "https://krux02@bitbucket.org/krux02/tensordslnim.git" |