From d1f04951e5d1607b160ceb8227c5e50dfdd9885c Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sat, 25 Nov 2017 19:49:41 -0600 Subject: [PATCH] Updating strawboss project definition so we can self-build. --- strawboss.projectdef.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/strawboss.projectdef.json b/strawboss.projectdef.json index dc631a9..4048ca7 100644 --- a/strawboss.projectdef.json +++ b/strawboss.projectdef.json @@ -6,7 +6,17 @@ "stepCmd": "nimble build" }, "test": { "depends": ["unittest", "functest"] }, - "functest": { "stepCmd": "nimble functest" }, - "unittest": { "stepCmd": "nimble unittest" } + "functest": { + "cmdInput": [ + "cp $build_DIR/strawboss .", + "nim c -r src/test/nim/run_functional_tests" + ] + }, + "unittest": { + "cmdInput": [ + "cp $build_DIR/strawboss .", + "nim c -r src/test/nim/run_unit_tests" + ] + } } }