From a2afccad268a75ac7a4f310eeb7e71dec1ca7020 Mon Sep 17 00:00:00 2001 From: Brian Seymour Date: Fri, 12 Mar 2021 13:33:17 -0600 Subject: [PATCH] add missing tests, give clojure more time --- lxc/executors/clojure | 2 +- lxc/tests/_run | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lxc/executors/clojure b/lxc/executors/clojure index 39689c4..7298893 100644 --- a/lxc/executors/clojure +++ b/lxc/executors/clojure @@ -1,4 +1,4 @@ #!/bin/bash cd /tmp/$1 -timeout -s KILL 3 xargs -a args.args -d '\n' clojure -M code.code < stdin.stdin +timeout -s KILL 10 xargs -a args.args -d '\n' clojure -M code.code < stdin.stdin diff --git a/lxc/tests/_run b/lxc/tests/_run index b166802..dbcc47b 100755 --- a/lxc/tests/_run +++ b/lxc/tests/_run @@ -6,6 +6,8 @@ echo -n 'testing bash = ' ../../cli/execute bash bash.sh echo -n 'testing c = ' ../../cli/execute c c.c +echo -n 'testing clojure = ' +../../cli/execute clojure clojure.clj echo -n 'testing cpp = ' ../../cli/execute cpp cpp.cpp echo -n 'testing crystal = ' @@ -34,6 +36,8 @@ echo -n 'testing julia = ' ../../cli/execute julia julia.jl echo -n 'testing kotlin = ' ../../cli/execute kotlin kotlin.kt +echo -n 'testing lolcode = ' +../../cli/execute lolcode lolcode.lol echo -n 'testing lisp = ' ../../cli/execute lisp lisp.cl echo -n 'testing nasm 32 bit = '