mirror of
https://github.com/intel/isa-l.git
synced 2024-12-13 09:52:56 +01:00
f31da80345
Change-Id: I30f2f1147989ec3411f7d16066f0e5a8eb208135 Signed-off-by: Seth Howell <seth.howell@intel.com>
12 lines
148 B
Bash
Executable File
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: $?"
|
|
}
|