summaryrefslogtreecommitdiffstats
path: root/src/isa-l/tools/test_tools.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsrc/isa-l/tools/test_tools.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/isa-l/tools/test_tools.sh b/src/isa-l/tools/test_tools.sh
new file mode 100755
index 000000000..448b1f92b
--- /dev/null
+++ b/src/isa-l/tools/test_tools.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+function test_start()
+{
+ echo "entering test: $1"
+}
+
+function test_end()
+{
+ echo "leaving test: $1 status: $2"
+}