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 (42 lines) | stat: -rwxr-xr-x 1,006 bytes parent folder | download | duplicates (5)
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
35
36
37
38
39
40
41
42
#!/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::_wx_optmod_webview(), 'Test::More' => skip_all => 'No WebView Support';
use if !Wx::wxTHREADS, 'Test::More' => skip_all => 'No thread support';

use Test::More tests => 4;
use Wx::WebView;

my $app = Wx::App->new( sub { 1 } );

my $frame = Wx::Frame->new(undef, -1, 'Test Frame');

my $wcontrol  = Wx::WebView::NewDefault();
my $wcontrol2 = Wx::WebView::New($frame, -1);

my $march1 = Wx::WebViewArchiveHandler->new('zip');
my $march2 = Wx::WebViewArchiveHandler->new('zip');

my $item1  = Wx::WebViewHistoryItem->new('someurl', 'sometitle');
my $item2  = Wx::WebViewHistoryItem->new('someurl', 'sometitle');

$wcontrol2->Destroy;
undef $wcontrol2;
undef $march2;
undef $item2;

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


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