#!/bin/sh
# **********************************************************************
#
# Copyright (c) 1999
# Object Oriented Concepts, Inc.
# Billerica, MA, USA
#
# All Rights Reserved
#
# **********************************************************************

#
# Try to find top-level directory
#
if test -f property/include/OB/CosProperty.h
then
    top_srcdir=property
elif test -f include/OB/CosProperty.h
then
    top_srcdir=.
elif test -f ../include/OB/CosProperty.h
then
    top_srcdir=..
elif test -f ../../include/OB/CosProperty.h
then
    top_srcdir=../..
elif test -f ../../../include/OB/CosProperty.h
then
    top_srcdir=../../..
elif test -f ../../../../include/OB/CosProperty.h
then
    top_srcdir=../../../..
else
    $echo "$0: can't find top-level directory"
    exit
fi

#
# Run standard init script
#
. $top_srcdir/../config/sh.init

#
# Print welcome message
#
$echo
$echo "*******************************"
$echo "* Property Service Test-Suite *"
$echo "*******************************"

#
# Run test
#
$echo
$top_srcdir/test/proptest${exe}
