summaryrefslogtreecommitdiff
path: root/tests/specs/mod.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-03-15 10:27:43 -0400
committerGitHub <noreply@github.com>2024-03-15 14:27:43 +0000
commitce768bac834c1efebf2663b01f6e46db99329631 (patch)
tree80499c54ba7973e8433ceff3436757ec46717f2d /tests/specs/mod.rs
parent36e6e4a00997603d2290c416239c2de8feeb6ede (diff)
chore(lsp): add tests for compiler options being resolved relative the config file (#22924)
Investigation from #17298
Diffstat (limited to 'tests/specs/mod.rs')
-rw-r--r--tests/specs/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/specs/mod.rs b/tests/specs/mod.rs
index 6a61ae2a6..7795f47de 100644
--- a/tests/specs/mod.rs
+++ b/tests/specs/mod.rs
@@ -24,6 +24,10 @@ pub fn main() {
// todo(dsherret): the output should be changed to be terse
// when it passes, but verbose on failure
for category in &categories {
+ if category.tests.is_empty() {
+ continue; // skip output when all the tests have been filtered out
+ }
+
eprintln!();
eprintln!(" {} {}", colors::green_bold("Running"), category.name);
eprintln!();