summaryrefslogtreecommitdiff
path: root/sgi/sct.sh
blob: 43f9a0c70bece455dd64d01ac2a7d81a279f7cea (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#!/bin/bash

###############################################################################
# Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# Neither the name of ARM nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#################################################################################

source $PWD/../sgi/sgi_common_util.sh

declare -A sgi_platforms
sgi_platforms[sgi575]=1
sgi_platforms[sgiclarka]=1
sgi_platforms[sgiclarkh]=1

__print_supported_sgi_platforms()
{
	echo "Supported platforms are -"
	for plat in "${!sgi_platforms[@]}" ;
		do
			printf "\t $plat \n"
		done
	echo
}

print_usage ()
{
	echo ""
	echo "Execute UEFI SCT tests on SGI platforms"
	echo "Usage: ./sct.sh -p <platform> [-n <true|false>] [-j <true|false>] [-a \"model params\"]"
	echo "  -p   SGI platform name (mandatory)"
	echo "  -n   Enable network: true or false (default: false)"
	echo "  -j   Automate sct test: true or false (default: false)"
	echo "  -a   Additional model parameters, if any"
	echo ""
	__print_supported_sgi_platforms
	echo "Example 1: ./sct.sh -p sgi575"
	echo "  Executes UEFI SCT tests for sgi575 platform."
	echo
	echo "Example 2: ./sct.sh -p sgi575 -j true"
	echo "  Executes UEFI SCT tests for sgi575 platform and terminates the fvp model"
	echo "  automatically when the test ends."
	echo
}

# get_sct_test_results: Extracts the UEFI SCT test results from SCT partition
# of UEFI SCT disc image using the offset to start and end sectors.
get_sct_test_results()
{
	UEFI_SCT_RESULT_FILE=$outdir/sgi-UefiSct_Results_${CURRENT_DATE_TIME}.csv
	UEFI_SCT_SEQ_FILE=$outdir/sgi-UefiSct_Sequence_${CURRENT_DATE_TIME}.seq

	local flag=false

	mkdir -p $outdir

	# Get the start and end sectors offset in SCT partition
	sector=($(gdisk -l $sct_image | awk '/^Number/{p=1;next}; p{gsub(/[^[:digit:]]/, "", $2); print $2; print $3}'))
	arr=( $( echo "${sector[@]}" | sed -e 's/ /\n/g' ) )

	# Copy the test results from the SCT partition
	dd if=$sct_image of=sctres skip=${arr[0]} count=${arr[1]} &> /dev/null
	mcopy -i sctres ::SCT/Report/results.csv $UEFI_SCT_RESULT_FILE

	# Check whether the results are extracted successfully or not
	if [ -f "$UEFI_SCT_RESULT_FILE" ]; then
		flag=true
		echo "UEFI SCT test results are at $UEFI_SCT_RESULT_FILE"
	fi
	if [[ ! "$flag" = true ]]; then
		echo "UEFI SCT results files are not exist in SCT partition"
	fi

	flag=false
	# Get the sequence file from the SCT partition
	mcopy -i sctres ::SCT/Sequence/sct.seq $UEFI_SCT_SEQ_FILE
	if [ -f "$UEFI_SCT_SEQ_FILE" ]; then
		flag=true
		echo "UEFI SCT sequence file is at $UEFI_SCT_SEQ_FILE"
	fi
	if [[ ! "$flag" = true ]]; then
		echo "UEFI SCT sequence file is not exist in SCT partition"
	fi
}

while getopts "p:n:a:j:h" opt; do
	case $opt in
		p)
			platform=$OPTARG
			;;
		j)
			;;
		n|a)
			;;
		*)
			print_usage
			exit 1
			;;
	esac
done

#Ensure that the platform is supported
if [ -z "$platform" ] ; then
	print_usage
	exit 1
fi

if [ -z "${sgi_platforms[$platform]}" ] ; then
	echo "[ERROR] Could not deduce the selected platform."
	__print_supported_sgi_platforms
	exit 1
fi

#Run the UEFI SCT tests
sct_image="../../../../output/$platform/uefisct/uefi-sct.img"
platform_dir="platforms/$platform"

pushd $platform_dir

if [ ! -f $sct_image ]; then
	echo "UEFI-SCT image uefi-sct.img not found at $sct_image"
	print_usage
	exit 1
fi

set -- "$@" "-v" "$sct_image"
source ./run_model.sh

# if model failed to start, exit
if [ "$MODEL_PID" == "0" ] ; then
	exit 1
fi

# wait for the test to complete
parse_log_file "$PWD/$platform/$UART0_ARMTF_OUTPUT_FILE_NAME" "UEFI-SCT Done!" 7200
ret=$?

# kill the model's children, then kill the model
kill_model
sleep 2

if [ "$ret" != "0" ]; then
	echo "[ERROR]: SCT test failed or timedout!"
	exit 1
else
	echo "[SUCCESS]: SCT test completed!"
fi

outdir="$PWD/$platform/uefisct"

# Get the UEFI SCT test results
get_sct_test_results

popd
exit 0