#!/bin/sh

echo "Starting flash module tester."

flashd-factorytest -c /etc/flash-diagd/default.local -D
if [ $? -ne 0 ]
then
	echo "*** Failed."
	exit 1
fi

exit 0
