[libvirt] [test-API PATCH 1/2] sharedmod: Add a new file for variable sharing in testcases

Guannan Ren gren at redhat.com
Fri Apr 6 09:14:16 UTC 2012


    sharedmod.py: in root directory
---
 sharedmod.py |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 sharedmod.py

diff --git a/sharedmod.py b/sharedmod.py
new file mode 100644
index 0000000..f3de5a6
--- /dev/null
+++ b/sharedmod.py
@@ -0,0 +1,13 @@
+# This is a module for variable sharing across testcases during
+# running. You have to import it in each of testcases which want
+# to share data. The framwork have already set 'conn' for use in
+# testcases.
+
+# connection object in libvirt.py
+conn = None
+
+# shared variables for customized use in testcases
+# Note: please set them to None at the end of sharing
+defined_var1 = None
+defined_var2 = None
+defined_var3 = None
-- 
1.7.7.5




More information about the libvir-list mailing list