vote up 1 vote down star

I am building an app that talks to an Access database via OleDB/Jet. There is only a 32-bit Jet provider, no 64-bit provider, so the app needs to be running in 32-bit mode. My dev box is Vista 64, so I set the project to build for x86 instead of any cpu. That gets my app running and talking to the database.

But now I want to run some unit tests with Gallio Icarus, which is built for any cpu and is strongly signed (meaning using CorFlags.exe (in the SDK) to force-switch to 32-bit only will cause the assembly not to run until it's been re-signed).

Is there some way to run Gallio Icarus in 32-bit mode so I can load these unit tests?

flag

25% accept rate

3 Answers

vote up 2 vote down

Turns out the trick was using CorFlags.exe to mark Gallio.Host.exe as 32bit only.

link|flag
vote up 1 vote down

You need to build your program specifically targeting the x86 processor.

Project properties -> Build -> Platform target: x86

link|flag
Done that. But the testrunner is running in 64-bit, which seems ultimately to be causing OleDB to look for a 64-bit Jet driver. – Justice Oct 14 '08 at 22:19
Umh, sorry, can't help you much with Gallio Icarus. Have you tried generating x86 native images for it using ngen.exe? – Franci Penov Oct 14 '08 at 22:48
vote up 0 vote down

Isn't Gallio open source? You could download and build (and sign if necessary) to suit your needs, or am I missing something, should I get my coat?

http://www.gallio.org/Development.aspxlink text

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.