Skip Menu |

This queue is for tickets about the JavaScript CPAN distribution.

Report information
The Basics
Id: 50288
Status: new
Priority: 0/
Queue: JavaScript

People
Owner: Nobody in particular
Requestors: jquelin [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.12
Fixed in: (no value)



Subject: wrong passage of JS_INC to Inline::C in t/24*.t
if JS_INC is set, the test t/24*.t does parse it correctly, but pass it wrongly to inline::c attached patch fixes the problem.
Subject: JavaScript-1.12-fix-inline-c-inc-from-jsinc.patch
--- t/24-c-level-interrupt-handler.t~ 2009-02-13 13:53:44.000000000 +0100 +++ t/24-c-level-interrupt-handler.t 2009-10-06 14:36:55.000000000 +0200 @@ -28,7 +28,7 @@ use Inline Config => FORCE_BUILD => 1; -Inline->bind('C' => <<'END_OF_CODE', TYPEMAPS => $typemap, INC => $inc, AUTO_INCLUDE => '#include "JavaScript.h"'); +Inline->bind('C' => <<'END_OF_CODE', TYPEMAPS => $typemap, INC => "$inc", AUTO_INCLUDE => '#include "JavaScript.h"'); struct Opcount { int cnt;