#!/bin/sh

# I was told that the official license does not
# allow me to change the upstream source .. well.

if [ ! -w . ]; then
	echo Need write access to current directory.
	exit -1
fi

ln -sf /usr/share/mssstest/edss.txt /usr/share/mssstest/global.dat . && /usr/lib/mssstest/mssstest $* && rm edss.txt global.dat

