summaryrefslogtreecommitdiffstats
path: root/src/build/citest/build-script
diff options
context:
space:
mode:
authorSameer Veer <sveer@us.ibm.com>2017-09-28 15:51:52 -0500
committerWilliam G. Hoffa <wghoffa@us.ibm.com>2018-01-29 08:58:14 -0500
commitdddd42af796f2a40631a24864980acad12ce08ce (patch)
treec2e0c415f110a111dff3b13fd77223e35e5c2f3a /src/build/citest/build-script
parentf0c1f3b3a422a163b593c05f20629ef89df2adf2 (diff)
downloadtalos-hostboot-dddd42af796f2a40631a24864980acad12ce08ce.tar.gz
talos-hostboot-dddd42af796f2a40631a24864980acad12ce08ce.zip
Changes to build-script & setup-env for nimbus & cumulus to co-exist
RTC: 179800 Change-Id: If15f1d49bc8ba189fdd7e5b139011bb7a12b654b Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46887 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Prachi Gupta <pragupta@us.ibm.com> Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/build/citest/build-script')
-rwxr-xr-xsrc/build/citest/build-script33
1 files changed, 30 insertions, 3 deletions
diff --git a/src/build/citest/build-script b/src/build/citest/build-script
index 89500539c..b88482eca 100755
--- a/src/build/citest/build-script
+++ b/src/build/citest/build-script
@@ -6,7 +6,7 @@
#
# OpenPOWER HostBoot Project
#
-# Contributors Listed Below - COPYRIGHT 2014,2017
+# Contributors Listed Below - COPYRIGHT 2014,2018
# [+] International Business Machines Corp.
#
#
@@ -29,7 +29,12 @@ if [ -z $PROJECT_ROOT ]; then
fi
source "$PROJECT_ROOT/src/build/citest/setup-env"
-
+echo "#--------------------------------"
+echo "SANDBOXROOT=$SANDBOXROOT"
+echo "SANDBOXNAME=$SANDBOXNAME"
+echo "CHIP=$CHIP"
+echo "PNOR=$PNOR"
+echo "#--------------------------------"
#export HOSTBOOT_DEBUG=1 #-- Ensure printkd / tracd is compiled in.
# Force simics into Secure Mode
@@ -43,12 +48,19 @@ COPYRIGHT_PID=$!
create-sandbox > create-sandbox.log 2>&1 &
CREATESANDBOX_PID=$!
+my_date=$(date)
# Build Hostboot.
+echo "#--------------------------------"
+printf "\n\n$(date): Starting \"make -j32\"\n\n"
+echo "#--------------------------------"
make -j32 || exit -1
-
+echo "#--------------------------------"
+printf "\n\nrc=$?: $(date): FINISHED running (\"make -j32\" was started at $my_date)\n\n"
+echo "#--------------------------------"
# Check copyright completion.
wait $COPYRIGHT_PID
if [ $? -eq 0 ]; then
+ echo "----Copyright check succeeded."
cat copyright.log
else
echo "----Copyright check failed."
@@ -59,6 +71,7 @@ fi
# Check sandbox create completion.
wait $CREATESANDBOX_PID
if [ $? -eq 0 ]; then
+ echo "----Sandbox creation succeeded, here is the log."
cat create-sandbox.log
else
echo "----Sandbox creation failed."
@@ -67,7 +80,14 @@ else
fi
# Add Hostboot files to simics sandbox.
+my_date=$(date)
+echo "#--------------------------------"
+printf "\n\n$(date): Now running populate-sandbox....\n\n"
+echo "#--------------------------------"
populate-sandbox || exit -1
+echo "#--------------------------------"
+printf "\n\nrc=$?: $(date): FINISHED running (\"populate-sandbox\" was started at $my_date)\n\n"
+echo "#--------------------------------"
#@fixme - Temp disable, RTC:170635
# Start errl parser building.
@@ -75,7 +95,14 @@ populate-sandbox || exit -1
#ERRLPARSERS_PID=$!
# Start CxxTest Simics execution.
+my_date=$(date)
+echo "#--------------------------------"
+printf "\n\n$(date): Now running cxxtest-start.sh....\n\n"
+echo "#--------------------------------"
cxxtest-start.sh || exit -1
+echo "#--------------------------------"
+printf "\n\nrc=$?: $(date): FINISHED running (\"cxxtest-start.sh\" was started at $my_date)\n\n"
+echo "#--------------------------------"
#@fixme - Temp disable, RTC:170635
# Check errl parser completion.
OpenPOWER on IntegriCloud