summaryrefslogtreecommitdiff
path: root/infra/packaging/chklist/TF2TFLITE_RUNNABLE
diff options
context:
space:
mode:
Diffstat (limited to 'infra/packaging/chklist/TF2TFLITE_RUNNABLE')
-rw-r--r--infra/packaging/chklist/TF2TFLITE_RUNNABLE13
1 files changed, 13 insertions, 0 deletions
diff --git a/infra/packaging/chklist/TF2TFLITE_RUNNABLE b/infra/packaging/chklist/TF2TFLITE_RUNNABLE
new file mode 100644
index 000000000..4c1239c33
--- /dev/null
+++ b/infra/packaging/chklist/TF2TFLITE_RUNNABLE
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+function prepare()
+{
+ export QUESTION="Is it possible to run tf2tflite?"
+}
+
+function run()
+{
+ if [[ $(ldd -r "${NNAS_INSTALL_PREFIX}/bin/tf2tflite" | grep '^undefined' | wc -l) -eq 0 ]]; then
+ export PASSED=1
+ fi
+}