Initial revision

This commit is contained in:
em
1985-02-06 21:25:27 +00:00
parent d7abe0e8b6
commit 0ff3a17f5e
78 changed files with 6131 additions and 0 deletions

13
lang/cem/ctest/run Executable file
View File

@@ -0,0 +1,13 @@
date
for A in ct*
do (
echo "***** $A"
cd "$A"
if test -r run ; then
sh run "${1-gen}"
else
echo "No run file present"
fi
)
done
date