1516N/A#!/usr/bin/python
267N/A#
267N/A# CDDL HEADER START
267N/A#
267N/A# The contents of this file are subject to the terms of the
267N/A# Common Development and Distribution License (the "License").
267N/A# You may not use this file except in compliance with the License.
267N/A#
267N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
267N/A# or http://www.opensolaris.org/os/licensing.
267N/A# See the License for the specific language governing permissions
267N/A# and limitations under the License.
267N/A#
267N/A# When distributing Covered Code, include this CDDL HEADER in each
267N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
267N/A# If applicable, add the following below this CDDL HEADER, with the
267N/A# fields enclosed by brackets "[]" replaced with your own identifying
267N/A# information: Portions Copyright [yyyy] [name of copyright owner]
267N/A#
267N/A# CDDL HEADER END
267N/A#
267N/A
1715N/A# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
267N/A# Use is subject to license terms.
267N/A
267N/Aimport os
267N/Aimport sys
267N/A
1715N/A# Set the path so that modules can be found
430N/Apath_to_parent = os.path.join(os.path.dirname(__file__), "..")
430N/Asys.path.insert(0, path_to_parent)
430N/A
1715N/Aimport pkg5testenv
948N/A
1715N/Adef setup_environment(proto):
1715N/A pkg5testenv.setup_environment(proto)