#!/bin/sh
# Run this script in the smx test dir you are loading with all 
# of the executables etc needed to run the full test suite.
sunosdir=/users/cosc/staff/paul/minix/1.7/minix1.7/src/test

for i in  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 \
         21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
do 
    sunread $sunosdir/test$i >test$i
done

for i in testload run sh1 sh2 t10a t11a t11b
do 
    sunread $sunosdir/$i >$i
done
chmod 755 *
chown root test11 test33
chmod 4755 test11 test33
# Needed by sh1
sunread $sunosdir/test1.c >test1.c
exit
