1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#! /bin/bash -e
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
# SPDX-FileCopyrightText: Bradley M. Bell <bradbell@seanet.com>
# SPDX-FileContributor: 2003-22 Bradley M. Bell
# ----------------------------------------------------------------------------
# Use this shell script when a new test is added to initially create
# the source code files */test_name.cpp which return false (for not available).
#
echo "Change this script so that it automates the omhelp commands"
echo "at the beginning of the created files."
echo exit 1
#
if [ "$1" == "" ]
then
echo "usage: new_test.sh test_name"
echo "where test_name is the name of the new test being added"
exit 1
fi
test_name="$1"
if [ ! -e "link_$test_name.cpp" ]
then
echo "The file ./link_$test_name.cpp does not yet exist."
echo "It must first be created before executing this script."
exit 1
fi
if ! grep "speed\/link_$test_name.cpp" main.cpp
then
echo "link_$test_name.cpp has not yet been added to main.cpp"
exit 1
fi
list="
adolc
cppad
double
fadbad
sacado
"
for dir in profile $list
do
if grep "link_$test_name.cpp" $dir/makefile.am
then
echo "$test_name.cpp is already in $dir/makefile.am"
exit 1
fi
if [ -e $dir/$test_name.cpp ]
then
echo "The file $dir/$test_name.cpp already exists."
exit 1
fi
done
#
sed -i main.cpp -e "s/speed\/link[^%]*\$/&%\n\tspeed\/link_$test_name.cpp/"
#
copy=`sed -n ../COPYING -e '/^\/\*/,/\*\/$/p'`
link=`sed -n link_$test_name.cpp -e "/^ *extern *bool *link_$test_name/,/^);/p"`
fun=`echo "$link" | sed -e 's/extern */\n/' -e 's/^);/)\n{\n\treturn false;\n}/'`
for dir in $list
do
echo "$copy$fun" > $dir/$test_name.cpp
sed -i $dir/makefile.am \
-e "s/\/main.cpp.*/&\n\t..\/link_$test_name.cpp \\\\/" \
-e "s/\/link_$test_name.cpp.*/&\n\t$test_name.cpp \\\\/"
done
sed -i profile/makefile.am \
-e "s/\/main.cpp.*/&\n\t..\/link_$test_name.cpp \\\\/" \
-e "s/\/link_$test_name.cpp.*/&\n\t..\/cppad\/$test_name.cpp \\\\/"
|