aboutsummaryrefslogtreecommitdiff
path: root/test/test.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-17 03:09:07 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-17 03:09:07 -0400
commitebf93c0807053bf2408456e893e5e26afd805f0e (patch)
tree8018dfd7c5dbaf848cf6d5ac9a33688f527b8526 /test/test.scala
parentb9c20082bcbd231eb67c3ded0d3fe6674c8c55b7 (diff)
downloadcbt-ebf93c0807053bf2408456e893e5e26afd805f0e.tar.gz
cbt-ebf93c0807053bf2408456e893e5e26afd805f0e.tar.bz2
cbt-ebf93c0807053bf2408456e893e5e26afd805f0e.zip
Replace dependencies feature for conflict resolution
Diffstat (limited to 'test/test.scala')
-rw-r--r--test/test.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test.scala b/test/test.scala
index c49d1e5..6c629bb 100644
--- a/test/test.scala
+++ b/test/test.scala
@@ -92,6 +92,7 @@ object Main{
assert(res.out contains usageString, usageString + " not found in " ++ res.toString)
}
def compile(path: String)(implicit logger: Logger) = task("compile", path)
+ def run(path: String)(implicit logger: Logger) = task("run", path)
def task(name: String, path: String)(implicit logger: Logger) = {
val res = runCbt(path, Seq(name))
val debugToken = name ++ " " ++ path ++ " "
@@ -207,6 +208,7 @@ object Main{
clean("multi-build")
usage("simple")
compile("simple")
+ run("simple")
clean("simple")
if( compat ){
usage("simple-fixed")