summaryrefslogtreecommitdiff
path: root/tests/automated/run_scenario.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/automated/run_scenario.py')
-rw-r--r--tests/automated/run_scenario.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/automated/run_scenario.py b/tests/automated/run_scenario.py
new file mode 100644
index 0000000..bfd06d1
--- /dev/null
+++ b/tests/automated/run_scenario.py
@@ -0,0 +1,11 @@
+#!/usr/bin/python
+import sys
+import ccdash
+
+if __name__ == "__main__":
+ sys.argv[0] = "ccdash.py"
+ sys.argv.insert(1, "scenario")
+ rc = ccdash.main(sys.argv)
+ sys.exit(rc)
+
+