File: 03_threads.t

package info (click to toggle)
libwx-perl 1%3A0.9932-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,300 kB
  • sloc: cpp: 11,064; perl: 8,603; ansic: 711; makefile: 53
file content (34 lines) | stat: -rwxr-xr-x 812 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/perl -w

use strict;
use Config;
use if !$Config{useithreads} => 'Test::More' => skip_all => 'no threads';
use threads;

use Wx qw(:everything);
use if !Wx::wxTHREADS, 'Test::More' => skip_all => 'No thread support';
use Test::More tests => 4;
use Wx::Html;
use Wx::Print;

my $app = Wx::App->new( sub { 1 } );
my $easyprint = Wx::HtmlEasyPrinting->new;
my $easyprint2 = Wx::HtmlEasyPrinting->new;
my $htmldcrenderer = Wx::HtmlDCRenderer->new;
my $htmldcrenderer2 = Wx::HtmlDCRenderer->new;
my $htmlprintout = Wx::HtmlPrintout->new;
my $htmlprintout2 = Wx::HtmlPrintout->new;

undef $easyprint2;
undef $htmldcrenderer2;
undef $htmlprintout2;

my $t = threads->create
  ( sub {
        ok( 1, 'In thread' );
    } );
ok( 1, 'Before join' );
$t->join;
ok( 1, 'After join' );

END { ok( 1, 'At END' ) };