aboutsummaryrefslogtreecommitdiffstats
path: root/docs/TestingGuide.html
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2003-10-26 13:41:18 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2003-10-26 13:41:18 +0000
commit42fc19295d006f52a37e0548388cdc0324e0298f (patch)
tree9cb7272173539fec25f717d4aec3602cab92bc46 /docs/TestingGuide.html
parentaeeeab95457507e042ca56df0e6c1f59818dacab (diff)
downloadexternal_llvm-42fc19295d006f52a37e0548388cdc0324e0298f.zip
external_llvm-42fc19295d006f52a37e0548388cdc0324e0298f.tar.gz
external_llvm-42fc19295d006f52a37e0548388cdc0324e0298f.tar.bz2
Gotta use gmake, not make. make on Solaris is Sun's make which does not work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TestingGuide.html')
-rw-r--r--docs/TestingGuide.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index 71354e2..654c258 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -72,7 +72,7 @@
Makefile in that directory:
</p>
<pre>
- % make -C llvm/test
+ % gmake -C llvm/test
</pre>
<p>
@@ -81,7 +81,7 @@
</p>
<pre>
- % make -C llvm/test qmtest
+ % gmake -C llvm/test qmtest
</pre>
<p>
@@ -90,7 +90,7 @@
</p>
<pre>
- % make -C llvm/test/Programs
+ % gmake -C llvm/test/Programs
</pre>
</div>
@@ -374,19 +374,19 @@
QMTest driven tests and the Programs tests. By default, it will run
all of the tests.
</p><p>
- To run only the QMTest driven tests, run <tt>make qmtest</tt> at the
+ To run only the QMTest driven tests, run <tt>gmake qmtest</tt> at the
command line in llvm/tests. To run a specific qmtest, suffix the test
- name with ".t" when running make.
+ name with ".t" when running gmake.
</p><p>
For example, to run the Regression.LLC tests, type
- <tt>make Regression.LLC.t</tt> in llvm/tests.
+ <tt>gmake Regression.LLC.t</tt> in llvm/tests.
</p><p>
Note that the Makefiles in llvm/test/Features and llvm/test/Regression
are gone. You must now use QMTest from the llvm/test directory to run
them.
</p><p>
To run the Programs test, cd into the llvm/test/Programs directory and
- type <tt>make</tt>. Alternatively, you can type <tt>make
+ type <tt>gmake</tt>. Alternatively, you can type <tt>gmake
TEST=&lt;type&gt; test</tt> to run one of the specialized tests in
llvm/test/Programs/TEST.&lt;type&gt;.Makefile. For example, you could
run the nightly tester tests using the following commands:
@@ -394,7 +394,7 @@
<pre>
% cd llvm/test/Programs
- % make TEST=nightly test
+ % gmake TEST=nightly test
</pre>
<p>