Rename "polly-test" in the document and script.

The Makefile rule "polly-test" has been renamed to
"check-polly" in r182171.  This CL updates the document and
the automatic build script.

llvm-svn: 188624
This commit is contained in:
Logan Chien 2013-08-18 07:33:28 +00:00
parent 7deaae76ec
commit f166ea6715
2 changed files with 5 additions and 5 deletions

View File

@ -111,7 +111,7 @@ cd ${BASE}
To build Polly you can either use the autoconf or the cmake build system. At the To build Polly you can either use the autoconf or the cmake build system. At the
moment only the autoconf build system allows to run the llvm test-suite and only moment only the autoconf build system allows to run the llvm test-suite and only
the cmake build system allows to run 'make polly-test'. the cmake build system allows to run 'make check-polly'.
<h4>Set the directory layout:</h4> <h4>Set the directory layout:</h4>
<pre> <pre>
@ -136,8 +136,8 @@ make
<h3> Test Polly</h3> <h3> Test Polly</h3>
<p>To check if Polly works correctly you can run <em>make polly-test</em> for the <p>To check if Polly works correctly you can run <em>make check-polly</em> for the
cmake build or <em>make polly-test -C tools/polly/test/</em> for the autoconf cmake build or <em>make check-polly -C tools/polly/test/</em> for the autoconf
build. build.
<p>If you get something like <em>"... libisl.so.9: cannot open shared object file .."</em>, <p>If you get something like <em>"... libisl.so.9: cannot open shared object file .."</em>,

View File

@ -42,9 +42,9 @@ cd ${LLVM_BUILD}
if which cmake ; then if which cmake ; then
cmake -DCMAKE_PREFIX_PATH=${CLOOG_INSTALL} ${LLVM_SRC} cmake -DCMAKE_PREFIX_PATH=${CLOOG_INSTALL} ${LLVM_SRC}
make -j$procs -l$procs make -j$procs -l$procs
make polly-test make check-polly
else else
${LLVM_SRC}/configure --with-cloog=${CLOOG_INSTALL} --with-isl=${CLOOG_INSTALL} ${LLVM_SRC}/configure --with-cloog=${CLOOG_INSTALL} --with-isl=${CLOOG_INSTALL}
make -j$procs -l$procs make -j$procs -l$procs
make polly-test -C tools/polly/test/ make check-polly -C tools/polly/test/
fi fi