aboutsummaryrefslogtreecommitdiff
path: root/mlir/test/Examples
diff options
context:
space:
mode:
authorJulian Lettner <julian.lettner@apple.com>2020-04-07 22:48:39 -0700
committerJulian Lettner <julian.lettner@apple.com>2020-06-05 08:14:42 -0700
commit99d6e05e7144a2638c4e85ea75099e9dc6432cde (patch)
tree87c1ab7c61c1ec799ec2d41658f225c51ef719cc /mlir/test/Examples
parent9bcef270d7a319c6c0fdffc6c80984a8f0a30ecb (diff)
downloadllvm-99d6e05e7144a2638c4e85ea75099e9dc6432cde.zip
llvm-99d6e05e7144a2638c4e85ea75099e9dc6432cde.tar.gz
llvm-99d6e05e7144a2638c4e85ea75099e9dc6432cde.tar.bz2
[lit] Improve naming of test result categories
Improve consistency when printing test results: Previously we were using different labels for group names (the header for the list of, e.g., failing tests) and summary count lines. For example, "Failing Tests"/"Unexpected Failures". This commit changes lit to label things consistently. Improve wording of labels: When talking about individual test results, the first word in "Unexpected Failures", "Expected Passes", and "Individual Timeouts" is superfluous. Some labels contain the word "Tests" and some don't. Let's simplify the names. Before: ``` Failing Tests (1): ... Expected Passes : 3 Unexpected Failures: 1 ``` After: ``` Failed Tests (1): ... Passed: 3 Failed: 1 ``` Reviewed By: ldionne Differential Revision: https://reviews.llvm.org/D77708
Diffstat (limited to 'mlir/test/Examples')
-rw-r--r--mlir/test/Examples/standalone/test.toy2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/test/Examples/standalone/test.toy b/mlir/test/Examples/standalone/test.toy
index 1614279..7b4a9c2 100644
--- a/mlir/test/Examples/standalone/test.toy
+++ b/mlir/test/Examples/standalone/test.toy
@@ -1,4 +1,4 @@
# RUN: %cmake %mlir_src_root/examples/standalone -DCMAKE_CXX_COMPILER=%host_cxx -DCMAKE_C_COMPILER=%host_cc -DMLIR_DIR=%llvm_lib_dir/cmake/mlir ; %cmake --build . --target check-standalone | tee %t | FileCheck %s
-# CHECK: Expected Passes: 3
+# CHECK: Passed: 3
# UNSUPPORTED: windows, android