mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
2065e638f2
This will make the function more flexible Change-Id: I39acc83ca51ebd22d91166a47efa0d84f415669d 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: $2"
|
|
}
|