Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^3: Markup::Perl Review / Demo (Basic CGI Shell)

by Corion (Patriarch)
on Jul 04, 2018 at 20:29 UTC ( [id://1217905]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Markup::Perl Review / Demo (Basic CGI Shell)
in thread Markup::Perl Review / Demo (Basic CGI Shell)

The test fails because it doesn't know about how to run shell commands on Windows:

`$perl -e'print 1;'`;

On Windows, the shell only understands double quotes.

Replies are listed 'Best First'.
Re^4: Markup::Perl Review / Demo (Basic CGI Shell)
by usemodperl (Beadle) on Jul 04, 2018 at 20:52 UTC
    Thank you Corion, I missed that. Being the type of person who rummages through error_logs to find new excuses for rewriterules, my mind wonders why someone hasn't fixed that. I don't have perl on windows handy to test if Markup::Perl will work by installing with force.

    STOP REINVENTING WHEELS, START BUILDING SPACE ROCKETS!CPAN 🐪

      Instead of using force, why don't you fix the actual test and send a patch?

      Here is often how I check if a binary is available and executable (usually in my Makefile.PL files, but I digress... here's one example, and another):

      use strict; use warnings; use Test::More; my $is_win = $^O =~ /MSWin/; my ($sep, $bin) = $is_win ? (';', 'perl.exe') : (':', 'perl'); my $perl_available = grep { -x "$_/$bin" } split /$sep/, $ENV{PATH}; ok $perl_available, "perl binary was found and is executable"; done_testing();

      Update: Modified code to work on both Windows and Unixy platforms.

      A reply falls below the community's threshold of quality. You may see it by logging in.

      "my mind wonders why someone hasn't fixed that."

      Probably because nobody uses it.

      A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1217905]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-20 10:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found