Commit e5202b6d authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#3625 remove the install test from the fractal tree regression script closes[t:3625]

git-svn-id: file:///svn/toku/tokudb@32396 c7de825b-a66e-492c-adef-691d508d4ae1
parent 895e847c
...@@ -154,11 +154,12 @@ function build() { ...@@ -154,11 +154,12 @@ function build() {
done done
popd popd
tracefile=$builddir/build+$productname-$BDB+$nodename+$system+$release+$arch tracefile=$builddir/build+$productname-$CC-$BDB+$nodename+$system+$release+$arch
# get some config info # get some config info
uname -a >>$tracefile 2>&1 uname -a >>$tracefile 2>&1
cc -v >>$tracefile 2>&1 $CC -v >>$tracefile 2>&1
$CXX -v >>$tracefile 2>&1
if [ -f /proc/version ] ; then if [ -f /proc/version ] ; then
cat /proc/version >>$tracefile cat /proc/version >>$tracefile
fi fi
...@@ -198,7 +199,6 @@ function build() { ...@@ -198,7 +199,6 @@ function build() {
# src # src
runcmd 0 $productbuilddir/src make -k -s -j$makejobs local >>$tracefile 2>&1 runcmd 0 $productbuilddir/src make -k -s -j$makejobs local >>$tracefile 2>&1
runcmd $dowindows $productbuilddir/src make -k -j$makejobs check_globals >>$tracefile 2>&1 runcmd $dowindows $productbuilddir/src make -k -j$makejobs check_globals >>$tracefile 2>&1
runcmd 0 $productbuilddir/src make -k -s -j$makejobs install >>$tracefile 2>&1
runcmd 0 $productbuilddir/src/tests make -k -s -j$makejobs >>$tracefile 2>&1 runcmd 0 $productbuilddir/src/tests make -k -s -j$makejobs >>$tracefile 2>&1
# utils # utils
...@@ -346,8 +346,18 @@ while [ $# -gt 0 ] ; do ...@@ -346,8 +346,18 @@ while [ $# -gt 0 ] ; do
elif [ "$arg" = "--windows=yes" -o "$arg" = "--windows=1" ] ; then elif [ "$arg" = "--windows=yes" -o "$arg" = "--windows=1" ] ; then
usage; exit 1 usage; exit 1
elif [ $arg = "--gcc44" ] ; then elif [ $arg = "--gcc44" ] ; then
export CC=gcc44 export CC=gcc44; export CXX=g++44
export CXX=g++44 elif [ $arg = "--icc" ] ; then
export CC=icc; export CXX=icpc
d=/opt/intel/bin
if [ -d $d ] ; then
export PATH=$d:$PATH
. $d/compilervars.sh intel64
fi
d=/opt/intel/cilkutil/bin
if [ -d $d ] ; then
export PATH=$d:$PATH
fi
elif [[ $arg =~ ^--(.*)=(.*) ]] ; then elif [[ $arg =~ ^--(.*)=(.*) ]] ; then
eval ${BASH_REMATCH[1]}=${BASH_REMATCH[2]} eval ${BASH_REMATCH[1]}=${BASH_REMATCH[2]}
else else
...@@ -365,7 +375,7 @@ if [ $revision -eq 0 ] ; then revision=`get_latest_svn_revision`; fi ...@@ -365,7 +375,7 @@ if [ $revision -eq 0 ] ; then revision=`get_latest_svn_revision`; fi
export GCCVERSION=`$CC --version|head -1|cut -f3 -d" "` export GCCVERSION=`$CC --version|head -1|cut -f3 -d" "`
export VALGRIND=$VALGRIND export VALGRIND=$VALGRIND
build $bdb # setup VGRIND
exitcode=$? if [ $dovalgrind = 0 ] ; then export VGRIND=""; fi
exit $exitcode build $bdb
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment