From d4240df8b434363e629187b524c02195f6bf0ac2 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Thu, 11 Jun 2020 19:19:44 +0300 Subject: [PATCH] Rename the testrunner binary to ntu (from nim-test-utils) --- testrunner.nim => ntu.nim | 0 testrunner.nim.cfg => ntu.nim.cfg | 0 testutils.nimble | 5 +++-- 3 files changed, 3 insertions(+), 2 deletions(-) rename testrunner.nim => ntu.nim (100%) rename testrunner.nim.cfg => ntu.nim.cfg (100%) diff --git a/testrunner.nim b/ntu.nim similarity index 100% rename from testrunner.nim rename to ntu.nim diff --git a/testrunner.nim.cfg b/ntu.nim.cfg similarity index 100% rename from testrunner.nim.cfg rename to ntu.nim.cfg diff --git a/testutils.nimble b/testutils.nimble index d24be36..955e981 100644 --- a/testutils.nimble +++ b/testutils.nimble @@ -6,10 +6,11 @@ author = "Status Research & Development GmbH" description = "A unittest framework" license = "Apache License 2.0" skipDirs = @["tests"] -bin = @["testrunner"] +bin = @["ntu"] #srcDir = "testutils" -requires "nim >= 1.0.2" +requires "nim >= 1.0.2", + "testutils" proc execCmd(cmd: string) = echo "execCmd: " & cmd