File: threads.t

package info (click to toggle)
libwant-perl 0.18-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 132 kB
  • ctags: 15
  • sloc: perl: 163; makefile: 55
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