summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Kunz <georg.kunz@ericsson.com>2017-02-14 16:49:52 +0100
committerGeorg Kunz <georg.kunz@ericsson.com>2017-02-15 17:12:06 +0000
commit69a8847f21a811b7e3e6a883f36378c2ce76278b (patch)
tree62a3fa78934a02f6cf84d380a40ff0c3dde42f06
parentd95a132d3c768e8f25c93ad6e90ea94f94cdbddc (diff)
Adding empty framework for Gluon Functest suite
Change-Id: I95652c38bc88b9ef29592a3f1f6d8160720a5cda Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
-rwxr-xr-xtest/functest/gluon-test-suite.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/functest/gluon-test-suite.py b/test/functest/gluon-test-suite.py
new file mode 100755
index 0000000..2a64843
--- /dev/null
+++ b/test/functest/gluon-test-suite.py
@@ -0,0 +1,14 @@
+#!/usr/bin/python
+
+import sys
+
+def main():
+ print "Running Gluon test suite..."
+ #
+ # TODO: awesome test
+ #
+ print "Gluon test suite successfully completed."
+ return 0
+
+if __name__ == '__main__':
+ sys.exit(main())