From 585357839b160ecccc8d614eb33507c0dbc0ea35 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Fri, 30 Apr 2021 19:05:00 -0500 Subject: [PATCH] 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. --- testsuite/lib/upload.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } } } -- 2.25.1