Re: [IronPython] InvalidProgramException testing hosting under NUnit

2008-04-05 Thread Paul Turbett
That was it. Curt to the rescue again. Thanks. A possible suggestion would be a more descriptive error message :) Curt Hagenlocher wrote: This indicates that your executable directory does not contain IronPython.Modules.dll. On Thu, Apr 3, 2008 at 7:35 PM, Paul Turbett <[EMAIL PROTECTED]

Re: [IronPython] InvalidProgramException testing hosting under NUnit

2008-04-03 Thread Curt Hagenlocher
This indicates that your executable directory does not contain IronPython.Modules.dll. On Thu, Apr 3, 2008 at 7:35 PM, Paul Turbett <[EMAIL PROTECTED]> wrote: > Hi > > Was there ever a solution to this problem? I'm getting the same thing, > though not with NUnit. To port my IP interface from 1.1

Re: [IronPython] InvalidProgramException testing hosting under NUnit

2008-04-03 Thread Paul Turbett
Hi Was there ever a solution to this problem? I'm getting the same thing, though not with NUnit. To port my IP interface from 1.1 to 2.0 (beta 1), I created a separate test application, which worked fine. However I'm merging the code into my "real" application, but I'm not able to create a Sc

Re: [IronPython] InvalidProgramException testing hosting under NUnit

2008-03-12 Thread Fernando Correia
2008/3/12, Dino Viehland <[EMAIL PROTECTED]>: > There's an inner exception here (probably from Importer.cs in MakeImportSite) > but there isn't much info on it. Could you run it under a debugger and get > that original stack trace? It's not clear to me why we would blow up there. Thanks for

Re: [IronPython] InvalidProgramException testing hosting under NUnit

2008-03-12 Thread Dino Viehland
D] On Behalf Of Fernando Correia Sent: Wednesday, March 12, 2008 7:54 AM To: users@lists.ironpython.com Subject: [IronPython] InvalidProgramException testing hosting under NUnit I have a small hosting class that works on a WinForms app. But it gives an InvalidProgramException when called from a N

[IronPython] InvalidProgramException testing hosting under NUnit

2008-03-12 Thread Fernando Correia
I have a small hosting class that works on a WinForms app. But it gives an InvalidProgramException when called from a NUnit test. The test project is within the IronPython solution and I've referenced IronPython, IronPython.Modules and Microsoft.Scripting. I'd like to know if other people were ab