Alexandre Julliard : winetest: Also check for file size overflow occurring between tests.
Module: tools Branch: master Commit: 5579470f18ba8ce4014d441916777660577f4159 URL: https://source.winehq.org/git/tools.git/?a=commit;h=5579470f18ba8ce4014d4419... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Thu Dec 27 13:06:20 2018 +0100 winetest: Also check for file size overflow occurring between tests. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- winetest/dissect | 2 ++ 1 file changed, 2 insertions(+) diff --git a/winetest/dissect b/winetest/dissect index 24d5621..a468812 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -751,6 +751,8 @@ close_test_unit(1); close SUM or mydie "error writing to '$tmpdir/summary.txt': $!"; close IN; +mydie "report reached file size limit (runaway test?)" if -s $report >= $maxfilesize; + # # Generate the 'DLL version' section of the info box
participants (1)
-
Alexandre Julliard