backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / tests / run_tests.py
diff --git a/ryu/build/lib.linux-armv7l-2.7/ryu/tests/run_tests.py b/ryu/build/lib.linux-armv7l-2.7/ryu/tests/run_tests.py
new file mode 100644 (file)
index 0000000..835e789
--- /dev/null
@@ -0,0 +1,35 @@
+#!/usr/bin/env python
+
+
+import os
+import sys
+
+from nose import config
+from nose import core
+
+sys.path.append(os.getcwd())
+sys.path.append(os.path.dirname(__file__))
+
+
+import ryu.tests.unit
+from ryu.tests.test_lib import run_tests
+
+
+if __name__ == '__main__':
+    exit_status = False
+
+    # if a single test case was specified,
+    # we should only invoked the tests once
+    invoke_once = len(sys.argv) > 1
+
+    cwd = os.getcwd()
+    c = config.Config(stream=sys.stdout,
+                      env=os.environ,
+                      verbosity=int(os.environ.get('NOSE_VERBOSE', 3)),
+                      includeExe=True,
+                      traverseNamespace=True,
+                      plugins=core.DefaultPluginManager())
+    c.configureWhere(ryu.tests.unit.__path__)
+
+    exit_status = run_tests(c)
+    sys.exit(exit_status)