summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rwxr-xr-xlib/tap-driver.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/tap-driver.pl b/lib/tap-driver.pl
index 6d42b2255..ed9913102 100755
--- a/lib/tap-driver.pl
+++ b/lib/tap-driver.pl
@@ -63,7 +63,6 @@ my $plan_seen = NO_PLAN;
my %cfg = (
"color-tests" => 0,
"expect-failure" => 0,
- "enable-hard-errors" => 1,
"merge" => 0,
"comments" => 0,
"ignore-exit" => 0,
@@ -82,7 +81,7 @@ Getopt::Long::GetOptions (
'trs-file=s' => \$trs_file,
'color-tests=s' => \&bool_opt,
'expect-failure=s' => \&bool_opt,
- 'enable-hard-errors=s' => \&bool_opt,
+ 'enable-hard-errors=s' => sub {}, # No-op.
'diagnostic-string=s' => \$diag_string,
'comments' => sub { $cfg{"comments"} = 1; },
'no-comments' => sub { $cfg{"comments"} = 0; },