[llvm-commits] CVS: llvm/docs/TestingGuide.html

John Criswell criswell at cs.uiuc.edu
Fri Oct 10 14:53:13 PDT 2003


Changes in directory llvm/docs:

TestingGuide.html updated: 1.1 -> 1.2

---
Log message:

Renamed the feature subtests so that they do not begin with 'f'.  It was
never necessary to do that to denote them as feature tests.
Removed the Feature.asm tests as they are the same as the Feature.mc
tests.



---
Diffs of the changes:  (+4 -9)

Index: llvm/docs/TestingGuide.html
diff -u llvm/docs/TestingGuide.html:1.1 llvm/docs/TestingGuide.html:1.2
--- llvm/docs/TestingGuide.html:1.1	Fri Oct 10 13:42:49 2003
+++ llvm/docs/TestingGuide.html	Fri Oct 10 14:50:53 2003
@@ -222,7 +222,7 @@
 		These are the feature tests found in llvm/test/Feature.  They are broken
 		up into the following categories:
 		<ul>
-			<li>fad<br>
+			<li>ad<br>
 			Assembler/Disassembler tests.  These tests verify that a piece of
 			LLVM assembly language can be assembled into bytecode and then
 			disassembled into the original assembly language code.
@@ -232,24 +232,19 @@
 			can be assembled correctly.
 			<p>
 
-			<li>fasm<br>
-			Assembler tests.  These tests verify that the code can be translated
-			into native assembly code.
-			<p>
-
-			<li>fopt<br>
+			<li>opt<br>
 			Optimizer tests.  These tests verify that two of the
 			optimizer passes completely optimize a program (i.e.
 			after a single pass, they cannot optimize a program
 			any further).
 			<p>
 
-			<li>fmc<br>
+			<li>mc<br>
 			Machine code tests.  These tests verify that the LLVM assembly
 			language file can be translated into native assembly code.
 			<p>
 
-			<li>fcc<br>
+			<li>cc<br>
 			C code tests.  These tests verify that the specified LLVM assembly
 			code can be converted into C source code using the C backend.
 		</ul>





More information about the llvm-commits mailing list