#!/usr/bin/perl -w

use strict;

my $exe = '$SIM/arch-model $SIMTESTS/perlbmk/mipsver';

my $cmd;

#makerand produces different random numbers since
#the IXCITE rand() is not the same as the std unix rand

#print "\nmakerand\n";
#$cmd = "$exe makerand.pl > makerand.out 2>&1";
#system $cmd;

print "\nperfect\n";
$cmd = "$exe perfect.pl b 3 m 4 > b.3.m.4.out 2>&1";
system $cmd;


