I have refactored a large F# project. It has an automated buildcommand that compiles all source files in one long run of the F# compiler. This is so that I can easily do reproducible builds. The buildcommand runs nunit-console on itself before building the project, and this passes just fine. After the refactoring, a large proportion of my unit tests started to fail with:
Exception: System.BadImageFormatException: An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)
This is when the project is compiled with F# 2.0, and I can reproduce the same problem from the command line (i.e. without using NUnit). The stacktrace often points at an inocuous piece of new code (a constructor that just stores some data without doing anything obvious to it).
However, when the project is compiled using F# 3.0, all unit tests that suffer the problem under F# 2.0 and that I tried pass. This is when invoked from the command line (not using NUnit). NUnit now claims that the freshly compiled executable that I can invoke by hand just fine does not exist. There is a long stacktrace with file not found exception at the top. (I have not tried building the buildcommand using F# 3.0, so it's not surprising its unit tests are still fine).
Google suggests that HRESULT: 0x8007000B might be caused by a compiler bug. It may be a case of a bad crasftsman blaming his tools, but the issue disappears when F# 3.0 is used. Can someone please suggest anything to try to get things working again under F# 2.0?
I am not too troubled about using F# 3.0. But I really need NUnit to work. Does anyone know what could be going wrong? Just to reiterate, Nunit fails to load an executable that runs fine when started from the command line, yet loads the same executable fine from the same place when it was compiled using F# 2.0 rather than using F# 3.0.
I'll be really grateful for any help with this. Many thanks.