#!/bin/sh
# This script ensures that the test data is owned by root.

rm -rf testdata
mkdir testdata
cp -r ${srcdir}/*.ex* testdata
chown -R root:root testdata
