Megatest

Artifact [aa5368d04d]
Login

Artifact aa5368d04d6ec82891b988b4180c43ce97a0a92c:


#!/bin/bash

echo Compiling hwclient and hwserver
csc hwclient.scm
csc hwserver.scm

./hwserver > hwserver.log &

sleep 1
for x in a b c d e f g h i j k l m n o p q r s t u v w x y z;do
./hwclient $x &
done

# killall -v hwserver hwclient