#!/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")