Some minor test.pl fixes, added m01000.pm

This commit is contained in:
jsteube
2018-12-21 09:10:23 +01:00
parent 33de5afa8b
commit c0e83dc471
9 changed files with 51 additions and 1 deletions

View File

@@ -24,7 +24,9 @@ is_in_array ($TYPE, $TYPES) or usage_exit ();
is_whole ($MODE) or die "Mode must be a number\n";
eval { require "m$MODE.pm" } or die "Could not load test module:\n$@";
my $module = sprintf ("m%05d.pm", $MODE);
eval { require $module; } or die "Could not load test module: $module\n$@";
if ($TYPE eq 'single')
{