[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
doc
/
perl-Test-Simple
/
t
/
Legacy
/
Regression
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 637.t
1,260 B
SET
[ EDIT ]
|
[ DEL ]
📄 683_thread_todo.t
428 B
SET
[ EDIT ]
|
[ DEL ]
📄 6_cmp_ok.t
265 B
SET
[ EDIT ]
|
[ DEL ]
📄 736_use_ok.t
782 B
SET
[ EDIT ]
|
[ DEL ]
📄 789-read-only.t
672 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: 683_thread_todo.t
use strict; use warnings; use Test2::Util qw/CAN_THREAD/; BEGIN { unless(CAN_THREAD) { require Test::More; Test::More->import(skip_all => "threads are not supported"); } } use threads; use Test::More; my $t = threads->create( sub { local $TODO = "Some good reason"; fail "Crap"; 42; } ); is( $t->join, 42, "Thread exitted successfully" ); done_testing;