blob: 8b2654a7b989734ee37c918a55626a041a2b8e31 [file] [log] [blame]
A R Karthick76a497a2017-04-12 10:59:39 -07001#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07002# Copyright 2016-present Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
A R Karthick76a497a2017-04-12 10:59:39 -07007#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07008# http://www.apache.org/licenses/LICENSE-2.0
A R Karthick76a497a2017-04-12 10:59:39 -07009#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Chetan Gaonker3ff8eae2016-04-12 14:50:26 -070016import os,sys
17from utilities import Utilities, utilities
A R Karthick76a497a2017-04-12 10:59:39 -070018from CordTestUtils import log_test as log
Chetan Gaonker3ff8eae2016-04-12 14:50:26 -070019
20#log.setLevel('INFO')
21class MAIN(object):
22 def __init__(self):
23 global utilities
24 self.log = log
25 self.logdir = os.getenv('HOME')
26 self.logHeader = ''
27 self.utilities = utilities
28 self.TRUE = True
29 self.FALSE = False
30 self.EXPERIMENTAL_MODE = self.FALSE
31
32 def cleanup(self): pass
33
34 def exit(self): pass
35
36main = MAIN()