File: threads.t

package info (click to toggle)
libwant-perl 0.29-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 171; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;

use Test::More 'tests' => 1;
use Config;

SKIP: {
    skip "Threads not available", 1 unless $Config{useithreads};
    my $out = `$^X -Mblib t/threads.p 2>&1`;
    is($out, ''     => 'No destruct error');
}

# EOF