From b7789afed1ed1f3850ef32eda0b33d5a0e7ba2a4 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Mon, 6 Nov 2023 11:29:40 -0500 Subject: [PATCH] fixup! WIP: feat: add `process-reports` subcmd. --- moz-webgpu-cts/src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/moz-webgpu-cts/src/main.rs b/moz-webgpu-cts/src/main.rs index 161aa81..993a428 100644 --- a/moz-webgpu-cts/src/main.rs +++ b/moz-webgpu-cts/src/main.rs @@ -266,7 +266,10 @@ fn run(cli: Cli) -> ExitCode { .collect::>(); if found_glob_walk_err { - log::error!("failed to enumerate files with WPT report globs; bailing"); + log::error!(concat!( + "failed to enumerate files with WPT report globs, ", + "see above for more details" + )); return ExitCode::FAILURE; }