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