Remove "Tests printing and parsing of" comments. (#7968)
The file path/name conventions already convey this information.
diff --git a/docs/developers/developing_iree/testing_guide.md b/docs/developers/developing_iree/testing_guide.md
index 0fcc23c..5cfd3cd 100644
--- a/docs/developers/developing_iree/testing_guide.md
+++ b/docs/developers/developing_iree/testing_guide.md
@@ -105,6 +105,11 @@
Tests for the IREE compilation pipeline are written as lit tests in the same
style as MLIR.
+By convention, IREE includes tests for printing and parsing of MLIR ops in
+`.../IR/test/{OP_CATEGORY}_ops.mlir` files, tests for folding and
+canonicalization in `.../IR/test/{OP_CATEGORY}_folding.mlir` files, and tests
+for compiler passes and pipelines in other `.../test/*.mlir` files.
+
### Running a Test
For the test
@@ -134,7 +139,7 @@
a shell-script wrapper around FileCheck that passes it a few
`--do-the-right-thing` flags.
-As with all parts of the IREE compiler, these should not have a dependency on
+As with most parts of the IREE compiler, these should not have a dependency on
the runtime.
### Configuring the Build System
diff --git a/iree/compiler/Dialect/Flow/IR/test/executable_ops.mlir b/iree/compiler/Dialect/Flow/IR/test/executable_ops.mlir
index aa053c5..153973f 100644
--- a/iree/compiler/Dialect/Flow/IR/test/executable_ops.mlir
+++ b/iree/compiler/Dialect/Flow/IR/test/executable_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of executable/structural ops.
-
// RUN: iree-opt -split-input-file %s | iree-opt -split-input-file | IreeFileCheck %s
// CHECK-LABEL: @dispatch_ex
diff --git a/iree/compiler/Dialect/Flow/IR/test/tensor_ops.mlir b/iree/compiler/Dialect/Flow/IR/test/tensor_ops.mlir
index d8f0171..8d29f71 100644
--- a/iree/compiler/Dialect/Flow/IR/test/tensor_ops.mlir
+++ b/iree/compiler/Dialect/Flow/IR/test/tensor_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of tensor ops.
-
// RUN: iree-opt -split-input-file %s | iree-opt -split-input-file | IreeFileCheck %s
// CHECK-LABEL: @tensorReshape
diff --git a/iree/compiler/Dialect/HAL/IR/test/experimental_ops.mlir b/iree/compiler/Dialect/HAL/IR/test/experimental_ops.mlir
index 835651e..155c41e 100644
--- a/iree/compiler/Dialect/HAL/IR/test/experimental_ops.mlir
+++ b/iree/compiler/Dialect/HAL/IR/test/experimental_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of experimental ops.
-
// RUN: iree-opt -allow-unregistered-dialect -split-input-file %s | iree-opt -allow-unregistered-dialect -split-input-file | IreeFileCheck %s
// CHECK-LABEL: @shared_device
diff --git a/iree/compiler/Dialect/HAL/IR/test/semaphore_ops.mlir b/iree/compiler/Dialect/HAL/IR/test/semaphore_ops.mlir
index 8d40811..0edca3a 100644
--- a/iree/compiler/Dialect/HAL/IR/test/semaphore_ops.mlir
+++ b/iree/compiler/Dialect/HAL/IR/test/semaphore_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of hal.semaphore ops.
-
// RUN: iree-opt -split-input-file %s | iree-opt -split-input-file | IreeFileCheck %s
// CHECK-LABEL: @semaphore_create
diff --git a/iree/compiler/Dialect/VM/IR/test/arithmetic_ops.mlir b/iree/compiler/Dialect/VM/IR/test/arithmetic_ops.mlir
index bbb8381..5fedf0c 100644
--- a/iree/compiler/Dialect/VM/IR/test/arithmetic_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/arithmetic_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of arithmetic ops.
-
// RUN: iree-opt -split-input-file %s | IreeFileCheck %s
// CHECK-LABEL: @add_i32
diff --git a/iree/compiler/Dialect/VM/IR/test/assignment_ops.mlir b/iree/compiler/Dialect/VM/IR/test/assignment_ops.mlir
index 9033ce6..8ed1681 100644
--- a/iree/compiler/Dialect/VM/IR/test/assignment_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/assignment_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of assignment ops.
-
// RUN: iree-opt -allow-unregistered-dialect -split-input-file %s | IreeFileCheck %s
// CHECK-LABEL: @select_i32
diff --git a/iree/compiler/Dialect/VM/IR/test/comparison_ops.mlir b/iree/compiler/Dialect/VM/IR/test/comparison_ops.mlir
index b3ef463..246f6a6 100644
--- a/iree/compiler/Dialect/VM/IR/test/comparison_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/comparison_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of comparison ops.
-
// RUN: iree-opt -split-input-file %s | IreeFileCheck %s
// CHECK-LABEL: @cmp_eq_i32
diff --git a/iree/compiler/Dialect/VM/IR/test/control_flow_ops.mlir b/iree/compiler/Dialect/VM/IR/test/control_flow_ops.mlir
index 2445c45..51fd415 100644
--- a/iree/compiler/Dialect/VM/IR/test/control_flow_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/control_flow_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of control flow ops.
-
// RUN: iree-opt -split-input-file %s | IreeFileCheck %s
// CHECK-LABEL: @branch_empty
diff --git a/iree/compiler/Dialect/VM/IR/test/conversion_ops.mlir b/iree/compiler/Dialect/VM/IR/test/conversion_ops.mlir
index 262b00c..580cc96 100644
--- a/iree/compiler/Dialect/VM/IR/test/conversion_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/conversion_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of casting/conversion ops.
-
// RUN: iree-opt -split-input-file %s | iree-opt -split-input-file | IreeFileCheck %s
// CHECK-LABEL: @trunc
diff --git a/iree/compiler/Dialect/VM/IR/test/debug_ops.mlir b/iree/compiler/Dialect/VM/IR/test/debug_ops.mlir
index 22f8b48..6fac85c 100644
--- a/iree/compiler/Dialect/VM/IR/test/debug_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/debug_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of debug ops.
-
// RUN: iree-opt -split-input-file %s | IreeFileCheck %s
// CHECK-LABEL: @trace_args
diff --git a/iree/compiler/Dialect/VM/IR/test/global_ops.mlir b/iree/compiler/Dialect/VM/IR/test/global_ops.mlir
index 2f93106..4c1d1ef 100644
--- a/iree/compiler/Dialect/VM/IR/test/global_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/global_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of global ops.
-
// RUN: iree-opt -split-input-file %s | IreeFileCheck %s
// CHECK-LABEL: @global_load_i32
diff --git a/iree/compiler/Dialect/VM/IR/test/shift_ops.mlir b/iree/compiler/Dialect/VM/IR/test/shift_ops.mlir
index e1d076c..3dc82fc 100644
--- a/iree/compiler/Dialect/VM/IR/test/shift_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/shift_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of bitwise shift and rotate ops.
-
// RUN: iree-opt -split-input-file %s | IreeFileCheck %s
// CHECK-LABEL: @shl_i32
diff --git a/iree/compiler/Dialect/VM/IR/test/structural_ops.mlir b/iree/compiler/Dialect/VM/IR/test/structural_ops.mlir
index 234fb1e..475a5da 100644
--- a/iree/compiler/Dialect/VM/IR/test/structural_ops.mlir
+++ b/iree/compiler/Dialect/VM/IR/test/structural_ops.mlir
@@ -1,5 +1,3 @@
-// Tests printing and parsing of structural ops.
-
// RUN: iree-opt -split-input-file %s | iree-opt -split-input-file | IreeFileCheck %s
// CHECK-LABEL: @module_empty