File: 200-taint.t

package info (click to toggle)
libtest-compile-perl 3.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: perl: 816; makefile: 2; sh: 1
file content (14 lines) | stat: -rw-r--r-- 278 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!perl -w
use strict;
use warnings;

use Config;
use Test::More;
use Test::Compile qw( pl_file_ok );

if ( $Config{taint_disabled} ) {
    plan skip_all => "This perl was compiled without taint support";
}

pl_file_ok('t/scripts/taint.pl', 'taint.pl compiles');
done_testing();