summaryrefslogtreecommitdiffstats
path: root/atfinit.py
diff options
context:
space:
mode:
authorShwetha-H-Panduranga <shwetha@gluster.com>2011-12-06 14:25:20 +0530
committerShwetha-H-Panduranga <shwetha@gluster.com>2011-12-06 14:25:20 +0530
commit129e39fe6878f28ca203c690fab382b7289b334c (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /atfinit.py
parent18445ae1a94366c955cc7626fb8ec749dedcf73e (diff)
Removing all automation files from the repo
Diffstat (limited to 'atfinit.py')
-rw-r--r--atfinit.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/atfinit.py b/atfinit.py
deleted file mode 100644
index f50eefb..0000000
--- a/atfinit.py
+++ /dev/null
@@ -1,27 +0,0 @@
-"""atfinit module
-
-"""
-import os.path
-import parser
-from atfglobals import GlobalObj
-
-def _initialize_testrun_info(testrun_info_filename):
- """
- """
- return_status = 1
- if not os.path.exists(testrun_info_filename):
- print "Testrun Info File ' %s ' not found" % testrun_info_filename
- return return_status
- else:
- return_status = parser.parse_testrun_info_file(testrun_info_filename)
- return return_status
-
-def initialize(args):
- """
- *) Initialize TestrunInfo File
- """
- testrun_info_filename = args.file
- return_status = _initialize_testrun_info(testrun_info_filename)
- return return_status
-
-__all__ = ['initialize']