mirror of
https://github.com/nasa/fpp.git
synced 2025-12-13 16:47:48 -06:00
136 lines
2.1 KiB
Bash
136 lines
2.1 KiB
Bash
#!/bin/sh
|
|
|
|
. $COMPILER_ROOT/scripts/test-utils.sh
|
|
|
|
fpp_to_cpp=$COMPILER_ROOT/bin/fpp-to-cpp
|
|
|
|
update()
|
|
{
|
|
args=$1
|
|
infile=$2
|
|
if test -n "$3"
|
|
then
|
|
outfile=$3
|
|
else
|
|
outfile=$infile
|
|
fi
|
|
$fpp_to_cpp $args $infile.fpp 2>&1 | remove_path_prefix > $outfile.ref.txt
|
|
}
|
|
|
|
for file in `find . -name '*.ref.txt'`
|
|
do
|
|
rm $file
|
|
done
|
|
|
|
. ./tests.sh
|
|
|
|
# Default update ref
|
|
for t in $tests
|
|
do
|
|
echo "
|
|
$t()
|
|
{
|
|
update '' $t
|
|
}"
|
|
done > default-update-ref.sh
|
|
. ./default-update-ref.sh
|
|
|
|
move_cpp()
|
|
{
|
|
if test $# -ne 1
|
|
then
|
|
echo 'usage: move_cpp file' 1>&2
|
|
exit 1
|
|
fi
|
|
file=$1
|
|
for suffix in hpp cpp
|
|
do
|
|
mv $file'Ac.'$suffix $file'Ac.ref.'$suffix
|
|
done
|
|
}
|
|
|
|
move_cpp_suffix()
|
|
{
|
|
if test $# -lt 1 || test $# -gt 2
|
|
then
|
|
echo 'usage: move_cpp_suffix file [suffix]' 1>&2
|
|
exit 1
|
|
fi
|
|
file=$1
|
|
target_suffix=$2
|
|
for suffix in hpp cpp
|
|
do
|
|
mv $file'Ac.'$suffix $file'Ac'$target_suffix'.ref.'$suffix
|
|
done
|
|
}
|
|
|
|
move_h_hpp()
|
|
{
|
|
if test $# -ne 1
|
|
then
|
|
echo 'usage: move_h_hpp file' 1>&2
|
|
exit 1
|
|
fi
|
|
file=$1
|
|
for suffix in hpp h
|
|
do
|
|
mv $file'Ac.'$suffix $file'Ac.ref.'$suffix
|
|
done
|
|
}
|
|
|
|
move_hpp()
|
|
{
|
|
if test $# -ne 1
|
|
then
|
|
echo 'usage: move_hpp file' 1>&2
|
|
exit 1
|
|
fi
|
|
file=$1
|
|
mv $file'Ac.hpp' $file'Ac.ref.hpp'
|
|
}
|
|
|
|
move_template()
|
|
{
|
|
file=$1
|
|
for suffix in hpp cpp
|
|
do
|
|
remove_author < $file'.template.'$suffix > $file'.template.ref.'$suffix
|
|
done
|
|
}
|
|
|
|
move_test()
|
|
{
|
|
file=$1
|
|
for suffix in hpp cpp
|
|
do
|
|
mv $file'TesterBase.'$suffix $file'TesterBase.ref.'$suffix
|
|
mv $file'GTestBase.'$suffix $file'GTestBase.ref.'$suffix
|
|
done
|
|
if test -f $file'TesterHelpers.cpp'
|
|
then
|
|
mv $file'TesterHelpers.cpp' $file'TesterHelpers.ref.cpp'
|
|
fi
|
|
}
|
|
|
|
move_test_template()
|
|
{
|
|
file=$1
|
|
for suffix in hpp cpp
|
|
do
|
|
remove_author < $file'Tester.'$suffix > $file'Tester.ref.'$suffix
|
|
done
|
|
if test -f $file'TesterHelpers.cpp'
|
|
then
|
|
mv $file'TesterHelpers.cpp' $file'TesterHelpers.ref.cpp'
|
|
fi
|
|
remove_author < $file'TestMain.cpp' > $file'TestMain.ref.cpp'
|
|
}
|
|
|
|
. ./update-ref.sh
|
|
|
|
for t in $tests
|
|
do
|
|
echo "updating ref output for $t"
|
|
$t
|
|
done
|