isa-l/tools/test_tools.sh
Seth Howell f31da80345 test: add functions for indicating test completion
Change-Id: I30f2f1147989ec3411f7d16066f0e5a8eb208135
Signed-off-by: Seth Howell <seth.howell@intel.com>
2018-08-15 14:27:00 -07:00

12 lines
148 B
Bash
Executable File

#!/usr/bin/env bash
function test_start()
{
echo "entering test: $1"
}
function test_end()
{
echo "leaving test: $1 status: $?"
}