#!/bin/sh

# This kills a running test by creating the file KILLTEST.
# Sooner or later, a test will notice this file exists and stop.


echo "Note:  This program must be run in the src/testdir directory."
echo "You are responsible for ensuring that; it's not checked."

touch KILLTEST

echo "By running this program, you've 'raised a flag'.  Tests will not"
echo "actually stop until some test notices the flag.  If you're unlucky,"
echo "that could take a few minutes."

exit 0
