| Server IP : 93.115.150.27 / Your IP : 216.73.216.221 Web Server : LiteSpeed System : Linux host2.azar.host 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 User : dorfakkh ( 1797) PHP Version : 8.1.34 Disable Function : show_source, system, passthru, exec, popen, proc_open, mail MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cpanel/ea-ruby27/src/passenger-release-6.1.2/dev/ |
Upload File : |
#!/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])