Skip to content

Commit

Permalink
Skip all if built with -DSILENT_NO_TAINT_SUPPORT
Browse files Browse the repository at this point in the history
What formerly was bug ticket RT # 134287 is now GH issue
#17095.
  • Loading branch information
jkeenan committed May 8, 2021
1 parent 1e43c13 commit edd0d05
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions t/op/taint.t
Expand Up @@ -12,6 +12,14 @@ BEGIN {
require './test.pl';
set_up_inc('../lib');
require './loc_tools.pl';
use Config;
skip_all("perl built with SILENT_NO_TAINT_SUPPORT") if (
$Config{ccflags} =~ m/-DSILENT_NO_TAINT_SUPPORT/
or
$Config{cppflags} =~ m/-DSILENT_NO_TAINT_SUPPORT/
or
$Config{ccflags_nolargefiles} =~ m/-DSILENT_NO_TAINT_SUPPORT/
);
}

use strict;
Expand Down

0 comments on commit edd0d05

Please sign in to comment.