Skip to content

Commit 934f179

Browse files
committed
Fix DEBUGGING detection in t/run/todo.t
326f023 did not account for the fact that one can say -DDEBUGGING=none to mean no debugging. This checks for that.
1 parent 7eab72f commit 934f179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/run/todo.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ use warnings;
103103

104104
my $switches = "";
105105

106-
my $is_debugging_build = $Config{config_args} =~ /\bDDEBUGGING\b/;
106+
my $is_debugging_build = $Config{config_args} =~ /\bDDEBUGGING\b(*nla:=none)/;
107107

108108
our $TODO;
109109

0 commit comments

Comments
 (0)