From: Jacob Bachmeyer Date: Sat, 1 May 2021 00:05:00 +0000 (-0500) Subject: Include more information in the test log X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=585357839b160ecccc8d614eb33507c0dbc0ea35;p=gatekeeper.git Include more information in the test log Previously, the analyze_file_tree procedure stopped immediately when a tree that was expected to be empty was found to contain files. This change causes a full list of the files found to appear in the log. --- diff --git a/testsuite/lib/upload.exp b/testsuite/lib/upload.exp index d1ef2d4..989125d 100644 --- a/testsuite/lib/upload.exp +++ b/testsuite/lib/upload.exp @@ -299,7 +299,7 @@ proc analyze_file_tree { base_dir name zones mode {itemlist {}} } { expect { -ex $zone_base { exp_continue } -re {^[\r\n]+} { exp_continue } - -re {.+} { set result fail } + -re {.+} { set result fail; exp_continue } } }