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

#4448 run fractal tree tests with cilk refs[t:4448]

git-svn-id: file:///svn/toku/tokudb@39500 c7de825b-a66e-492c-adef-691d508d4ae1
parent 75e3b574
...@@ -95,7 +95,7 @@ function runcmd() { ...@@ -95,7 +95,7 @@ function runcmd() {
fi fi
echo $result echo $result
echo $result >>$commit_msg echo $result >>$commit_msg
echo $result >>/tmp/tokubuild.trace echo $result >>/tmp/$(whoami).build.check.trace
popd popd
} }
...@@ -149,6 +149,7 @@ function build() { ...@@ -149,6 +149,7 @@ function build() {
popd popd
tracefile=$builddir/$productname+$ftcc-$GCCVERSION+bdb-$BDBVERSION+$nodename+$system+$release+$arch tracefile=$builddir/$productname+$ftcc-$GCCVERSION+bdb-$BDBVERSION+$nodename+$system+$release+$arch
if [ $have_cilk != 0 ] ; then tracefile=$tracefile+cilk; fi
if [ $debugtests != 0 ] ; then tracefile=$tracefile+debug; fi if [ $debugtests != 0 ] ; then tracefile=$tracefile+debug; fi
if [ $releasetests != 0 ] ; then tracefile=$tracefile+release; fi if [ $releasetests != 0 ] ; then tracefile=$tracefile+release; fi
...@@ -233,6 +234,7 @@ function build() { ...@@ -233,6 +234,7 @@ function build() {
eval runcmd 0 $productbuilddir make clean >>$tracefile 2>&1 eval runcmd 0 $productbuilddir make clean >>$tracefile 2>&1
eval runcmd 0 $productbuilddir make release CC=$ftcc HAVE_CILK=$have_cilk >>$tracefile 2>&1 eval runcmd 0 $productbuilddir make release CC=$ftcc HAVE_CILK=$have_cilk >>$tracefile 2>&1
eval runcmd 0 $productbuilddir/utils make -j$makejobs CC=$ftcc HAVE_CILK=$have_cilk >>$tracefile 2>&1 eval runcmd 0 $productbuilddir/utils make -j$makejobs CC=$ftcc HAVE_CILK=$have_cilk >>$tracefile 2>&1
eval runcmd 0 $productbuilddir/release/examples make check -j$makejobs CC=$ftcc HAVE_CILK=$have_cilk >>$tracefile 2>&1
# release tests # release tests
eval runcmd 0 $productbuilddir/$system/tests make check -k -s SUMMARIZE=1 CC=$ftcc HAVE_CILK=$have_cilk VGRIND= >>$tracefile 2>&1 eval runcmd 0 $productbuilddir/$system/tests make check -k -s SUMMARIZE=1 CC=$ftcc HAVE_CILK=$have_cilk VGRIND= >>$tracefile 2>&1
...@@ -265,11 +267,6 @@ function build() { ...@@ -265,11 +267,6 @@ function build() {
runcmd $dowindows $productbuilddir/db-benchmark-test-cxx make -k -s check >>$tracefile 2>&1 runcmd $dowindows $productbuilddir/db-benchmark-test-cxx make -k -s check >>$tracefile 2>&1
fi fi
if [ 0 = 1 ] ; then
runcmd $dowindows $productbuilddir/release make -k setup >>$tracefile 2>&1
runcmd $dowindows $productbuilddir/release/examples make -k check >>$tracefile 2>&1
fi
# man # man
if [ 0 = 1 ] ; then if [ 0 = 1 ] ; then
runcmd 0 $productbuilddir/man/texi make -k -s -j$makejobs >>$tracefile 2>&1 runcmd 0 $productbuilddir/man/texi make -k -s -j$makejobs >>$tracefile 2>&1
...@@ -336,7 +333,7 @@ commit=1 ...@@ -336,7 +333,7 @@ commit=1
docoverage=0 docoverage=0
ftcc=gcc ftcc=gcc
have_cilk=0 have_cilk=0
have_poly=1 have_poly=0
debugtests=1 debugtests=1
releasetests=1 releasetests=1
upgradetests=0 upgradetests=0
......
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