1#! /bin/sh
2
3# test all modules whose logs are not already up to date
4
5# main log files go in $srcdir/../../../log/*.rlg
6
7# This script may be passed a directory as arg1, but if not it expects
8# to find my source files in "../cslbase"
9
10if test -n "$1"
11then srcdir="$1"
12else srcdir=../cslbase
13fi
14
15./r38 -v $srcdir/../util/testall.red -Dno_init_file -D@srcdir=$srcdir -Dwhich_module=$2 -- log/testall.log
16
17
18