blob: 9bd586db81b590a5888376225e3b6875f52953ea [file] [log] [blame]
A.R Karthick2e99c472017-03-22 19:13:51 -07001#
A R Karthick07608ef2016-08-23 16:51:19 -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 Karthick2e99c472017-03-22 19:13:51 -07007#
A R Karthick07608ef2016-08-23 16:51:19 -07008# http://www.apache.org/licenses/LICENSE-2.0
A.R Karthick2e99c472017-03-22 19:13:51 -07009#
A R Karthick07608ef2016-08-23 16:51:19 -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#
16import os,sys
A.R Karthick2e99c472017-03-22 19:13:51 -070017import logging
18logging.getLogger('scapy.runtime').setLevel(logging.ERROR)
A R Karthick07608ef2016-08-23 16:51:19 -070019##add the python path to lookup the utils
20working_dir = os.path.dirname(os.path.realpath(sys.argv[-1]))
21utils_dir = os.path.join(working_dir, '../utils')
22fsm_dir = os.path.join(working_dir, '../fsm')
23__path__.append(utils_dir)
24__path__.append(fsm_dir)
A R Karthicke14fc022016-12-08 14:50:29 -080025cli_dir = os.path.join(working_dir, '../cli')
26__path__.append(cli_dir)