about summary refs log tree commit diff
path: root/test/runner
diff options
context:
space:
mode:
Diffstat (limited to 'test/runner')
-rwxr-xr-xtest/runner18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/runner b/test/runner
new file mode 100755
index 0000000..5002d80
--- /dev/null
+++ b/test/runner
@@ -0,0 +1,18 @@
+#!/bin/sh
+# -*- mode: scheme; -*-
+exec guile --debug -s "$0" "$@"
+!#
+
+(define-module (test-runner)
+  #:use-module (ice-9 match)
+  #:use-module (srfi srfi-1)  ; for last
+  #:use-module (srfi srfi-13)
+  #:use-module (srfi srfi-64) ; for tests
+  #:use-module (ice-9 rdelim)
+  )
+
+(test-begin "all-tests")
+
+(load "test-uvlmm-integration.scm")
+
+(test-end "all-tests")