isa-l/tools/test_tools.sh
Seth Howell 2065e638f2 tools: fix format of test_end function
This will make the function more flexible

Change-Id: I39acc83ca51ebd22d91166a47efa0d84f415669d
Signed-off-by: Seth Howell <seth.howell@intel.com>
2018-09-25 15:00:05 -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: $2"
}