Reverted scrolling changes on test script

This commit is contained in:
John Wellbelove 2025-12-22 21:02:54 +00:00
parent 6b3e776eb5
commit 922cfde453

View File

@ -4,37 +4,16 @@ shopt -s xpg_echo
clear
# Define colours
export ASAN_OPTIONS=symbol_line=1
export ASAN_SYMBOLIZER_PATH=/usr/lib/llvm-14/bin//llvm-symbolizer
configuration_name="Configuration Name Not Set"
FailColour='\033[38;2;255;128;128m'
PassColour='\033[38;2;128;255;128m'
TitleColour='\033[38;2;107;210;255m'
HelpColour='\033[38;2;250;180;250m'
NoColour='\033[0m'
CommandColour='\033[38;2;255;255;128m'
# Save cursor position
tput sc
# Clear screen
tput clear
# Write fixed header on line 1
tput cup 0 0
echo $CommandColour "run-tests.sh" $1 $2 $3 $4 $5 $NoColour
# Define scrolling region from line 2 to bottom
tput csr 2 $(($(tput lines) - 1))
# Restore cursor position
tput rc
# Move cursor to start of scrollable area
tput cup 1 0
export ASAN_OPTIONS=symbol_line=1
export ASAN_SYMBOLIZER_PATH=/usr/lib/llvm-14/bin//llvm-symbolizer
configuration_name="Configuration Name Not Set"
ParseGitBranch()
{
@ -200,31 +179,10 @@ fi
etl_version_raw=$(cat ../version.txt)
etl_version=$(echo $etl_version_raw | sed -e 's/\r//g') # Remove trailing \r
cleanup()
{
# Reset scroll region to full screen
tput csr 0 $(($(tput lines) - 1))
# Move cursor to a safe line (bottom of terminal)
tput cup $(($(tput lines) - 1)) 0
}
ctrl_c()
{
# Reset scroll region to full screen
tput csr 0 $(($(tput lines) - 1))
# Move cursor to a safe line (bottom of terminal)
tput cup $(($(tput lines) - 1)) 0
}
trap ctrl_c INT
trap cleanup EXIT
cd syntax_check || exit 1
echo "" > log.txt
#******************************************************************************
# Get the compiler versions
#******************************************************************************
while read i ; do
CC=`echo $i | cut -d, -f1 | sed -e 's/ *$//'`
MSG=`echo $i | cut -d, -f2 | sed -e 's/ *$//'`