aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-10-10 19:50:53 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-10-10 19:50:53 +0000
commita1f7cac0273ce871e14bba597a9ad0838fff143d (patch)
treee14530eda888bef2f7037f5217201d2e8fa34deb /docs
parentac32bfa54b052181f89e4a1b1259ce0c4d55237d (diff)
downloadexternal_llvm-a1f7cac0273ce871e14bba597a9ad0838fff143d.zip
external_llvm-a1f7cac0273ce871e14bba597a9ad0838fff143d.tar.gz
external_llvm-a1f7cac0273ce871e14bba597a9ad0838fff143d.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/TestingGuide.html13
1 files changed, 4 insertions, 9 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index bf740cf..05af6bc 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -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>