xref: /isa-l/tools/test_tools.sh (revision 2065e638f2f32619dd5a1541649c008dbdeaf7b7)
1#!/usr/bin/env bash
2
3function test_start()
4{
5        echo "entering test: $1"
6}
7
8function test_end()
9{
10        echo "leaving test: $1 status: $2"
11}
12