blob: 834db7e200a5e11eb38bdd3be29c3710e4fc3612 [file] [log] [blame]
Matteo Scandolo48d3d2d2017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
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
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# 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
16
A R Karthick76a497a2017-04-12 10:59:39 -070017#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070018# Copyright 2016-present Ciena Corporation
19#
20# Licensed under the Apache License, Version 2.0 (the "License");
21# you may not use this file except in compliance with the License.
22# You may obtain a copy of the License at
A R Karthick76a497a2017-04-12 10:59:39 -070023#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070024# http://www.apache.org/licenses/LICENSE-2.0
A R Karthick76a497a2017-04-12 10:59:39 -070025#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070026# Unless required by applicable law or agreed to in writing, software
27# distributed under the License is distributed on an "AS IS" BASIS,
28# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29# See the License for the specific language governing permissions and
30# limitations under the License.
31#
Chetan Gaonker3ff8eae2016-04-12 14:50:26 -070032import os,sys
33from utilities import Utilities, utilities
A R Karthick76a497a2017-04-12 10:59:39 -070034from CordTestUtils import log_test as log
Chetan Gaonker3ff8eae2016-04-12 14:50:26 -070035
36#log.setLevel('INFO')
37class MAIN(object):
38 def __init__(self):
39 global utilities
40 self.log = log
41 self.logdir = os.getenv('HOME')
42 self.logHeader = ''
43 self.utilities = utilities
44 self.TRUE = True
45 self.FALSE = False
46 self.EXPERIMENTAL_MODE = self.FALSE
47
48 def cleanup(self): pass
49
50 def exit(self): pass
51
52main = MAIN()