Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.213
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
perl-B-Hooks-EndOfScope /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
00-basic.t
747
B
-rw-r--r--
00-report-prereqs.dd
8.45
KB
-rw-r--r--
00-report-prereqs.t
5.49
KB
-rw-r--r--
01-eval.t
458
B
-rw-r--r--
02-localise.t
752
B
-rw-r--r--
05-exception_xs.t
320
B
-rw-r--r--
06-exception_pp.t
570
B
-rw-r--r--
10-test_without_vm_pure_pp.t
1.54
KB
-rw-r--r--
11-direct_xs.t
538
B
-rw-r--r--
12-direct_pp.t
417
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 10-test_without_vm_pure_pp.t
use strict; use warnings; use Test::More 0.88; use B::Hooks::EndOfScope; plan skip_all => "Tests already executed in pure-perl mode" if $INC{'B/Hooks/EndOfScope/PP.pm'}; use Config; use IPC::Open2 qw(open2); use File::Glob 'bsd_glob'; # in case the user had it set $ENV{B_HOOKS_ENDOFSCOPE_IMPLEMENTATION} = ''; # for the $^X-es $ENV{PERL5LIB} = join ($Config{path_sep}, @INC); my $has_dh = eval { require Devel::Hide; Devel::Hide->VERSION('0.0007') }; die 'author tests require Devel::Hide for testing the PP path!' if not $has_dh and ($ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING}); fail 'smokers require Devel::Hide for testing the PP path!' if not $has_dh and $ENV{AUTOMATED_TESTING}; $ENV{DEVEL_HIDE_VERBOSE} = 0 if $has_dh; $ENV{B_HOOKS_ENDOFSCOPE_IMPLEMENTATION} = 'PP' unless $has_dh; # rerun the tests under the assumption of no vm at all my @files = bsd_glob("t/0*.t"); push @files, 'xt/author/00-compile.t' if $ENV{AUTHOR_TESTING}; for my $fn (@files) { next if $fn eq 't/00-report-prereqs.t'; note "retesting $fn"; my @cmd = ( $^X, $has_dh ? '-MDevel::Hide=Variable::Magic' : (), $fn ); # this is cheating, and may even hang here and there (testing on windows passed fine) # if it does - will have to fix it somehow (really *REALLY* don't want to pull # in IPC::Cmd just for a fucking test) # the alternative would be to have an ENV check in each test to force a subtest open2(my $out, my $in, @cmd); while (my $ln = <$out>) { print " $ln"; } wait; ok (! $?, "Wstat $? from: @cmd"); } done_testing;
Close