Commit 7ca10f4f authored by Paul Luse's avatar Paul Luse Committed by Daniel Verkamp
Browse files

test: add more info to the test log



Not sure how much this will help as there was already compiler
info there, but added uname, moved it up in the log a little
but (I think) and put some markers before and afer the info.

This is to help folks determine what OS & tool chain versions
the CI tests systems are using.

Change-Id: I49d2de09a8d8e5fbcdfa07ad2ce20adfc250d4e3
Signed-off-by: default avatarPaul Luse <paul.e.luse@intel.com>
Reviewed-on: https://review.gerrithub.io/404416


Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: default avatarChangpeng Liu <changpeng.liu@intel.com>
parent b96cf2ef
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -14,6 +14,13 @@ cd $rootdir
date -u
git describe --tags

# Print some test system info out for he log
echo "** START ** Info for Hostname: $HOSTNAME"
uname -a
$MAKE cc_version
$MAKE cxx_version
echo "** END ** Info for Hostname: $HOSTNAME"

timing_enter autobuild

./configure $config_params
@@ -30,10 +37,6 @@ if [ $SPDK_BUILD_IOAT_KMOD -eq 1 ]; then
fi
timing_exit build_kmod

# Print compiler versions to log
$MAKE cc_version
$MAKE cxx_version

scanbuild=''
make_timing_label='make'
if [ $SPDK_RUN_SCANBUILD -eq 1 ] && hash scan-build; then