diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-05-19 00:41:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 09:41:31 +0200 |
commit | e909486e5cde5a4a77cd6f21b42fc9ab38ec2ae6 (patch) | |
tree | 7367a3774091f156d91e46cd4c292441ab3da46e /tests/compiler | |
parent | 27741d6a5c9ec87a6938b2928ae54b22bc93d9be (diff) | |
download | Nim-e909486e5cde5a4a77cd6f21b42fc9ab38ec2ae6.tar.gz |
trunner was not actually being tested in non-CTFFI mode; minor testament cleanups (#14377)
* use check * trunner now works with cpp * cleanup: move compiler/unittest_light => stdtest/unittest_light * fix tests/readme.md * remove deadcode references to rodfiles * fix for windows
Diffstat (limited to 'tests/compiler')
-rw-r--r-- | tests/compiler/tasciitables.nim | 2 | ||||
-rw-r--r-- | tests/compiler/tunittest_light.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/compiler/tasciitables.nim b/tests/compiler/tasciitables.nim index 0a5ee0f05..80d648508 100644 --- a/tests/compiler/tasciitables.nim +++ b/tests/compiler/tasciitables.nim @@ -1,4 +1,4 @@ -import compiler/unittest_light +import stdtest/unittest_light import compiler/asciitables import strformat diff --git a/tests/compiler/tunittest_light.nim b/tests/compiler/tunittest_light.nim index 5cad6997f..2951cc664 100644 --- a/tests/compiler/tunittest_light.nim +++ b/tests/compiler/tunittest_light.nim @@ -1,4 +1,4 @@ -import compiler/unittest_light +import stdtest/unittest_light proc testAssertEquals() = assertEquals("foo", "foo") |