Subject: | Gtk2-1.221\t\GtkRecentChooser.t hangs because file://C:/... |
Gtk2-1.221\t\GtkRecentChooser.t hangs because file://C:/...
isn't a proper URI, a slash is missing file:///C:/...
easy to fix if you use URI::file
#~ use Cwd qw(cwd);
#~ my $uri_one = "file://" . cwd() . "/" . $0;
#~ my $uri_two = "file://" . $^X;
use URI::file;
my $uri_one = URI::file->new(__FILE__)->abs(URI::file->cwd);
my $uri_two = URI::file->new($^X)->abs(URI::file->cwd);
I thank you