X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FTestingGuide.html;h=3c19cd12fc220128caff7bd33bb083ec853fe0b7;hb=c99ba9fba09ba29c07ab170b7ce9a2ffb401302a;hp=71354e29570bd6016113fa1a60f3b8bd8d10660c;hpb=af19f2e52c17a9bd91130d5dd0451fef477575e0;p=oota-llvm.git diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html index 71354e29570..3c19cd12fc2 100644 --- a/docs/TestingGuide.html +++ b/docs/TestingGuide.html @@ -72,7 +72,7 @@ Makefile in that directory:

-	 % make -C llvm/test
+	 % gmake -C llvm/test
 	

@@ -81,7 +81,7 @@

-	 % make -C llvm/test qmtest
+	 % gmake -C llvm/test qmtest
 	

@@ -90,13 +90,13 @@

-	 % make -C llvm/test/Programs
+	 % gmake -C llvm/test/Programs
 	

LLVM Test Suite - Organization

+ Organization
@@ -374,19 +374,19 @@ QMTest driven tests and the Programs tests. By default, it will run all of the tests.

- To run only the QMTest driven tests, run make qmtest at the + To run only the QMTest driven tests, run gmake qmtest 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.

For example, to run the Regression.LLC tests, type - make Regression.LLC.t in llvm/tests. + gmake Regression.LLC.t in llvm/tests.

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.

To run the Programs test, cd into the llvm/test/Programs directory and - type make. Alternatively, you can type make + type gmake. Alternatively, you can type gmake TEST=<type> test to run one of the specialized tests in llvm/test/Programs/TEST.<type>.Makefile. For example, you could run the nightly tester tests using the following commands: @@ -394,7 +394,7 @@

 	 % cd llvm/test/Programs
-	 % make TEST=nightly test
+	 % gmake TEST=nightly test
 	

@@ -420,6 +420,8 @@


John T. Criswell
+The LLVM Compiler Infrastructure +
Last modified: $Date$