diff options
author | Julian Lettner <julian.lettner@apple.com> | 2019-11-05 12:10:43 -0800 |
---|---|---|
committer | Julian Lettner <julian.lettner@apple.com> | 2019-11-05 12:10:43 -0800 |
commit | d77ef856fc240fcdba03315eaff8fd19b32bf2ca (patch) | |
tree | 4616020f1dfb20284e9abd9b34d5f20bcf0d432e /llvm/utils/lit/tests | |
parent | f2e7679d0f0b21d08356a8eb7e3b346443f0db9d (diff) | |
download | bcm5719-llvm-d77ef856fc240fcdba03315eaff8fd19b32bf2ca.tar.gz bcm5719-llvm-d77ef856fc240fcdba03315eaff8fd19b32bf2ca.zip |
Revert "[lit] Better/earlier errors when no tests are executed"
This reverts commit d8f2bff75126c6dde694ad245f9807fa12ad5630.
Diffstat (limited to 'llvm/utils/lit/tests')
-rw-r--r-- | llvm/utils/lit/tests/selecting.py | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/llvm/utils/lit/tests/selecting.py b/llvm/utils/lit/tests/selecting.py index cfbb9d19b6d..0921cdd31ac 100644 --- a/llvm/utils/lit/tests/selecting.py +++ b/llvm/utils/lit/tests/selecting.py @@ -1,18 +1,6 @@ # RUN: %{lit} %{inputs}/discovery | FileCheck --check-prefix=CHECK-BASIC %s # CHECK-BASIC: Testing: 5 tests - -# Check that we exit with an error if we do not discover any tests. -# -# RUN: not %{lit} %{inputs}/nonexistent 2>&1 | FileCheck --check-prefix=CHECK-BAD-PATH %s -# CHECK-BAD-PATH: Did not disover any tests for provided path(s). - -# Check that we exit with an error if we filter out all tests. -# -# RUN: not %{lit} --filter 'nonexistent' %{inputs}/discovery 2>&1 | FileCheck --check-prefix=CHECK-BAD-FILTER %s -# CHECK-BAD-FILTER: Filter did not match any tests (of 5 discovered). - - # Check that regex-filtering works, is case-insensitive, and can be configured via env var. # # RUN: %{lit} --filter 'o[a-z]e' %{inputs}/discovery | FileCheck --check-prefix=CHECK-FILTER %s @@ -20,7 +8,6 @@ # RUN: env LIT_FILTER='o[a-z]e' %{lit} %{inputs}/discovery | FileCheck --check-prefix=CHECK-FILTER %s # CHECK-FILTER: Testing: 2 of 5 tests - # Check that maximum counts work # # RUN: %{lit} --max-tests 3 %{inputs}/discovery | FileCheck --check-prefix=CHECK-MAX %s @@ -81,13 +68,15 @@ # # RUN: %{lit} --num-shards 100 --run-shard 6 %{inputs}/discovery >%t.out 2>%t.err # RUN: FileCheck --check-prefix=CHECK-SHARD-BIG-ERR2 < %t.err %s +# RUN: FileCheck --check-prefix=CHECK-SHARD-BIG-OUT2 < %t.out %s # CHECK-SHARD-BIG-ERR2: note: Selecting shard 6/100 = size 0/5 = tests #(100*k)+6 = [] -# CHECK-SHARD-BIG-ERR2: Shard does not contain any tests. Consider decreasing the shard count. +# CHECK-SHARD-BIG-OUT2: Testing: 0 of 5 tests # # RUN: %{lit} --num-shards 100 --run-shard 50 %{inputs}/discovery >%t.out 2>%t.err # RUN: FileCheck --check-prefix=CHECK-SHARD-BIG-ERR3 < %t.err %s +# RUN: FileCheck --check-prefix=CHECK-SHARD-BIG-OUT3 < %t.out %s # CHECK-SHARD-BIG-ERR3: note: Selecting shard 50/100 = size 0/5 = tests #(100*k)+50 = [] -# CHECK-SHARD-BIG-ERR3: Shard does not contain any tests. Consider decreasing the shard count. +# CHECK-SHARD-BIG-OUT3: Testing: 0 of 5 tests # Check that range constraints are enforced |