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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
|
#!/bin/bash
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/build/citest/autocitest $
#
# OpenPOWER HostBoot Project
#
# Contributors Listed Below - COPYRIGHT 2011,2018
# [+] International Business Machines Corp.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
################################################################################
## Simics automation using autosim
## 2011-05-23 mww modified to run hostboot in simics
## 2011-06-02 mww check in first working version.
## Profuse thanks to Patrick Williams for getting this going
## on the Jenkins server!!
##
## Usage:
## autocitest [--quiet] <backing_build> <sandbox_name> <hbi_image>
################################################################################
function waitkb()
{
## wait for kbhit to continue
## echo "Hit any key to continue"
## read kb
echo "."
}
function usage()
{
echo "usage:"
echo "$0 [--quiet] backing_tree_dir sandbox_name path_to_hbicore_test_img "
}
function stopsim()
{
# Stop simics
echo "Stopping simics"
autosim $NOWIN $VERBOSE --stopsim
if [ $? -ne 0 ] ; then
echo "WARNING: Unable to stop simics cleanly"
fi
}
function stopserver()
{
# Stop simics server
echo "Stopping simics server"
autosim $NOWIN $VERBOSE --stopserver
if [ $? -ne 0 ] ; then
echo "WARNING: Unable to stop simics server cleanly"
fi
}
function runtraceHB()
{
echo "Collect traceHB info..."
#autosim $NOWIN --simcmd "run-python-file ${SBXHOME}/src/build/simics/hb-simdebug.py"
#if [ $? -ne 0 ] ; then
# echo "ERROR 3: Unable to run $?"
# stopsim
# stopserver
# exit 1
#fi
autosim $NOWIN --simcmd "pipe hb-trace \"cat > traceHB.log\"" \
--timeout 300
if [ $? -ne 0 ] ; then
echo "ERROR 4 : Unable to run $?"
stopsim
stopserver
exit 1
fi
mv ${SANDBOXBASE}/simics/traceHB.log ${SBXHOME}/traceHB.log
}
## verbose is the default.
VERBOSE=" --verbose"
if [ "$1" = "--quiet" ] ; then
VERBOSE=""
shift
fi
##
## set up
##
DRIVER="$1" ## backing tree
export bb=$DRIVER ## simulate a workon
HBICORE_TEST="$2" ## path to hbicore_test.img
export SHELL="/bin/bash" ## Needed to fool workon to launch a bash
## shell, which autosim expects.
NOWIN="--nowin" ## remote execution does not have a display
## jenkins creates a new workspace for every compile.
## cxxtest-start.sh will verify this and then export WORKSPACE_DIR for us.
SBXHOME=$PROJECT_ROOT
if [ "$DRIVER" = "" ] ; then
echo "ERROR: you must specify a driver (backing tree) to run the tests with"
usage
exit 1
fi
if [ ! -f "${SBXHOME}/${HBICORE_TEST}" ] ; then
echo "ERROR: you must specify a valid hbicore_test.bin file."
usage
exit 1
fi
## Find the .syms file for the image. Remove extension, add .syms.
HBICORE_TEST_SYMS="${HBICORE_TEST%%.*}.syms"
## let's get set up
cd $SBXHOME
echo "$0"
echo "VERBOSE = $VERBOSE"
echo "NOWIN = $NOWIN"
echo "BACKING_TREE = $DRIVER"
echo "HBICORE_TEST = $HBICORE_TEST"
echo "HBICORE_TEST_SYMS = $HBICORE_TEST_SYMS"
echo "SANDBOXRC = $SANDBOXRC"
echo "SBXHOME = $SBXHOME"
echo "current directory is " `pwd`
waitkb
timestamp=`date +'%H:%M:%S'`
echo "$timestamp Starting autosample test..."
# see simics license usage
tail -n 500 /afs/rch/usr4/dlarson/public/stats/lic_usage.txt | grep hindsight
# Run set up in current shell
echo "run autosimsetup.."
export AUTOSIM_WORKDIR=$SANDBOXBASE
. autosimsetup
waitkb
# Start the simics server
echo "Starting simics server in sandbox $SANDBOXNAME on machine $MACHINE"
autosim $NOWIN $VERBOSE --startserver --wp --sandbox $SANDBOXNAME --machine $MACHINE
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to start simics server $?"
exit 1
fi
waitkb
# If we are running under Jenkins, do "no remote execution" because built in
# /tmp.
if [ -z $RUNNING_UNDER_JENKINS -a -z $SANDBOX_IN_TEMP ];
then
NRE=""
else
# Trick autosim into thinking we're running on a vexec system.
echo "echo \"Running on server $HOSTNAME ---\"" >> \
${SANDBOXBASE}/obj/ppc/simu/scripts/hbfw/startup.simics
NRE="--sim_parms -nre"
fi
# Start simics and wait for it to reach standby
echo "Attempting to start simics"
#autosim $VERBOSE --startsim --chkpt standby <<< chkpt not working yet
max_start_simics_attempts=5
current_attempts=0
while [ $current_attempts -lt $max_start_simics_attempts ]; do
echo "> Attempt $current_attempts/$max_start_simics_attempts to start simics"
autosim $NOWIN $VERBOSE --startsim $NRE --notar
if [ $? -ne 0 ] ; then
# Do not fail until max attempts tried
if [ $current_attempts -ge $max_start_simics_attempts ]; then
echo ">> ERROR: Unable to start simics $?"
stopserver ## kill the server again.
exit 1
fi
echo ">> Failed: trying to start simics again"
sleep 15
else
echo ">> Success: started simics"
break
fi
((current_attempts++))
done
waitkb
# open simics telnet port
autosim --simtelnet
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to open simics telnet port $?"
exit 1
fi
waitkb
## We need to be careful to get hostboot's HRMOR so
## allow SBE and HBBL to boot and for hostboot to get started
echo "Wait for SBE and Hostboot bootloader to complete."
echo
echo "==================================="
echo
BL_HRMOR=0x8200000
loopcount=1
while true; do
sleep 5
HRMOR=`autosim $NOWIN --simcmd "python \"getHRMOR()\""| tr -d '\n\r'`
echo "HRMOR = $HRMOR"
if [ "$HRMOR" != "$BL_HRMOR" ]; then
echo "SBE and Hostboot bootloader completed successfully"
break
fi
if [ "$loopcount" -ge 36 ]; then
echo "ERROR: timed out after 3 minutes waiting for SBE and Hostboot bootloader completion"
autosim $NOWIN --simcmd "sbe-trace 0"
autosim $NOWIN --simcmd "hb-bltrace"
stopsim
stopserver
exit 1
fi
((loopcount++)) # increment loopcount
done
echo
echo
# Grab Bootloader trace before it gets destroyed
echo "====> dump hb-bltrace..."
autosim $NOWIN --simcmd "pipe hb-bltrace \"cat > ${SBXHOME}/hb-bltrace.log \"" --timeout 300
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
stopsim
stopserver
exit 1
fi
waitkb
## grep for totaltests, etc. These will appear in the hbicore_test.syms file and
## look like the following:
## V,000292b8,00000000,00000008,CxxTest::totaltests
## V,000292c0,00000000,00000008,CxxTest::tracecalls
## V,000292c8,00000000,00000008,CxxTest::warnings
## V,000292d0,00000000,00000008,CxxTest::failedtests
## grep for the globals
echo "find totaltests, etc in ${SBXHOME}/${HBICORE_TEST_SYMS}"
totaltests_addr=`grep "CxxTest::g_TotalTests" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
failedtests_addr=`grep "CxxTest::g_FailedTests" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
warnings_addr=`grep "CxxTest::g_Warnings" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
tracecalls_addr=`grep "CxxTest::g_TraceCalls" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
mods_started_addr=`grep "CxxTest::g_ModulesStarted" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
mods_completed_addr=`grep "CxxTest::g_ModulesCompleted" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
shutdown_status=`grep "CpuManager::cv_shutdown_status" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
imageId_addr=`grep "CpuManager::cv_shutdown_status" \
${SBXHOME}/${HBICORE_TEST_SYMS} | awk '{split($0,a,","); print a[2]}'`
#Adjust addresses for HRMOR
HRMOR=`autosim $NOWIN --simcmd "python \"getHRMOR()\""| tr -d '\n\r'`
temp=$(($HRMOR + 0x$totaltests_addr))
totaltests_addr=`echo "obase=16; $temp" | bc`
temp=$(($HRMOR + 0x$failedtests_addr))
failedtests_addr=`echo "obase=16; $temp" | bc`
temp=$(($HRMOR + 0x$warnings_addr))
warnings_addr=`echo "obase=16; $temp" | bc`
temp=$(($HRMOR + 0x$tracecalls_addr))
tracecalls_addr=`echo "obase=16; $temp" | bc`
temp=$(($HRMOR + 0x$mods_started_addr))
mods_started_addr=`echo "obase=16; $temp" | bc`
temp=$(($HRMOR + 0x$mods_completed_addr))
mods_completed_addr=`echo "obase=16; $temp" | bc`
temp=$(($HRMOR + 0x$shutdown_status))
shutdown_status=`echo "obase=16; $temp" | bc`
temp=$((HRMOR + 0x$imageId_addr))
imageId_addr=`echo "obase=16; $temp" | bc`
## note, don't use $VERBOSE here or you get all sorts of extra junk in the output file.
echo "Wait for unit test completion."
echo
echo "==================================="
echo
declare -i timeout=0
modsstarted=0
modscompleted=0
loopcount=1
while [ $(($modsstarted)) -lt 1 -o $(($modsstarted)) -ne $(($modscompleted)) ]; do
sleep 20
((loopcount++)) # increment loopcount
echo "loopcount = $loopcount"
echo "modscompleted log command"
echo "autosim $NOWIN --simcmd \"print ((system_cmp0.phys_mem).read 0x$mods_completed_addr 0x08)\" 1> $SBXHOME/modscompleted.log 2> /dev/null"
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$mods_completed_addr 0x08)" 1> $SBXHOME/modscompleted.log 2> /dev/null
echo
echo "modscompleted command"
echo "cat $SBXHOME/modscompleted.log | awk '/0x/ {print strtonum($1)}'"
modscompleted=`cat $SBXHOME/modscompleted.log | awk '/0x/ {print strtonum($1)}'`
echo
echo "modsstarted log command"
echo "autosim $NOWIN --simcmd \"print ((system_cmp0.phys_mem).read 0x$mods_started_addr 0x08)\" 1> $SBXHOME/modsstarted.log 2> /dev/null"
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$mods_started_addr 0x08)" 1> $SBXHOME/modsstarted.log 2> /dev/null
echo
echo "modsstarted command"
echo "cat $SBXHOME/modsstarted.log | awk '/0x/ {print strtonum($1)}'"
modsstarted=`cat $SBXHOME/modsstarted.log | awk '/0x/ {print strtonum($1)}'`
echo
echo "ModulesStarted:ModulesCompleted => $modsstarted:$modscompleted"
# @TODO RTC:149210 temporary fix for autosim hangs on real code errors. For some reason
# when we hit an actual bug and simics halts, the autosim commands hang
# causing this loop to take >8 hours.
if [ -z $modsstarted ] && [ -z $modscompleted ]; then
echo "ERROR: autosim hanging on real code errors, temporarily catching early"
echo "See archived hbTracMerg for more info"
exit 1
fi
if [ "$loopcount" -ge 150 ]; then
timestamp=`date +'%H:%M:%S'`
echo "$timestamp ERROR: timed out after 50 minutes waiting for until test completion"
autosim $NOWIN --simcmd "hb-Ps with-backtrace"
timeout=$(($modsstarted - $modscompleted))
break
fi
echo
echo "==================================="
echo
done
echo "====> waiting for shutdown..."
loopcount=0
while [ "$loopcount" -lt 64 ]; do
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$shutdown_status 0x08)" 1> $SBXHOME/shutdown_status.log 2> /dev/null
shutdown_yet=`cat $SBXHOME/shutdown_status.log | awk '/0x/ {print strtonum($1)}'`
if [ "$shutdown_yet" -ne 0 ]; then
break
fi
sleep 5
((loopcount++)) # increment loopcount
done
# Start dumping a bunch of informaton about the simics run to various .log files
# these files will create job artifacts in Jenkins that we can use to debug issues
echo "====> dumping image id..."
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$imageId_addr 0x08)" 1> $SBXHOME/imageId.log 2> /dev/null
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
else
imageId=`cat $SBXHOME/imageId.log`
echo "Image id for PNOR that was loaded into simics is: $imageId"
fi
echo "====> dump totaltests..."
#init totalTests to be 0, which will cause test to fail collection fails
totaltests=0
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$totaltests_addr 0x08)" 1> $SBXHOME/totaltests.log 2> /dev/null
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
else
totaltests=`cat $SBXHOME/totaltests.log | awk '/0x/ {print strtonum($1)}'`
fi
echo "====> dump failedtests..."
#init failedtests to be 1, which will cause test to fail collection fails
failedtests=1
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$failedtests_addr 0x08)" 1> $SBXHOME/failedtests.log 2> /dev/null
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
else
failedtests=`cat $SBXHOME/failedtests.log | awk '/0x/ {print strtonum($1)}'`
fi
echo "====> dump warnings..."
#init warnings to be 1, which will cause test to fail collection fails
warnings=1
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$warnings_addr 0x08)" 1> $SBXHOME/warnings.log 2> /dev/null
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
else
warnings=`cat $SBXHOME/warnings.log | awk '/0x/ {print strtonum($1)}'`
fi
echo "====> dump tracecalls..."
autosim $NOWIN --simcmd "print ((system_cmp0.phys_mem).read 0x$tracecalls_addr 0x08)" 1> $SBXHOME/tracecalls.log 2> /dev/null
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
else
tracecalls=`cat $SBXHOME/tracecalls.log | awk '/0x/ {print strtonum($1)}'`
fi
echo "====> dump printk buffer..."
autosim $NOWIN --simcmd "pipe hb-printk \"cat > ${SBXHOME}/testprintk.log \"" --timeout 300
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
else
echo "----------------- Printk Buffer -------------------"
cat $SBXHOME/testprintk.log
fi
## run CamVan's python script to dump out the trace logs
echo "====> dump trace buffer(s)..."
runtraceHB
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
else
echo "----------------- traceHB Buffer -------------------"
cat $SBXHOME/traceHB.log
fi
echo "====> dump L3..."
autosim $NOWIN --simcmd "hb-dump"
if [ $? -ne 0 ] ; then
echo "ERROR: Unable to run $?"
fi
########################################################
## done. Stop the simulation
########################################################
stopsim
## now stop the server.
stopserver
## print out ending.
timestamp=`date +'%H:%M:%S'`
shutdown_code="$(grep --text 'Shutdown Requested' $SBXHOME/testprintk.log | awk -F '= 0x' '{ print $2 }')"
initfail=0
echo "\nShutdown Code = $shutdown_code"
if [ "${shutdown_code}" != "1230000" ] ; then
echo "**ERROR : System did not initialize and/or shutdown properly**"
initfail=1
fi
echo
echo "==================================================="
if [ $timeout = 0 ] ; then
echo "$timestamp Finished autocitest with no Cxx errors."
else
echo "$timestamp Failed autocitest, modules timed out."
echo " failed modules: $timeout"
fi
echo " total tests: $totaltests"
echo " failed tests: $failedtests"
echo " warnings: $warnings"
echo " trace calls: $tracecalls"
echo "==================================================="
echo
if [ 0 != $timeout ] ; then
echo "Modules started: $modsstarted"
echo "Modules completed: $modscompleted"
exit 1
fi
if [ 0 == $(($totaltests)) ] ; then
echo "**ERROR : No test cases ran, check that the correct pnor image was ran**"
exit 1
fi
if [ 0 != $(($failedtests)) ] ; then
echo "**ERROR : $failedtests testcases failed, check traces to detemine what failed"
exit 1
fi
if [ 0 != $(($warnings)) ] ; then
echo "**ERROR : $warnings testcase warnings found, check traces to detemine what failed"
exit 1
fi
if [ 0 != $(($initfail)) ] ; then
echo "**ERROR : Shutdown code is expected to be 1230000 but instead is $shutdown_code, check traces to see what caused the bad shutdown "
exit 1
fi
exit 0
|