show/hide this revision's text 9 Added tags
show/hide this revision's text 8 added 796 characters in body; edited title

After implementing fmod Visual C++ test strange behavior - All tests fail - Unable to get type.... Error: System.IO.FileNotFoundException - if certain line of code in one test

Ok, I've figured out what caused the problem but I still don't know why - it happened when I started using fmod, and it must have something to do with how the linker decides to bring in and execute static libraries and dll's. My code under test is a static lib; it refers to fmodex_vc, another static lib, which at some point (though I know not when) decides to load in its fmodex.dll. (Which is in the same directory as everything else, so I don't know why it wouldn't find it.) As far as I know, the code under test absolutely does not call the fmod initialization functions, but maybe fmod has some static global initializers that initialize themselves and load in the dll? And that code only gets pulled in if code in a module that uses it gets...used?

I'm testing unmanaged C++ code using the Visual Studio test framework and one day when I started using fmod it stopped working: Every test, even "test" tests that do nothing, would report (wrapped for readability):

Any ideas

Why is fmod doing this?

show/hide this revision's text 7 Added inner exception details

Here's

If I set the stack tracedebugger to break on any exception, fwiw - I don't do get anything useful out something interesting:

First-chance exception at 0x7c812aeb in vstesthost.exe: Microsoft C++ exception: HRException at memory location 0x05129890..

There's no source code at that location, of itcourse. Here's the call stack:

     kernel32.dll!7c812aeb()        [Frames below may be incorrect and/or missing, no symbols loaded for kernel32.dll]	    kernel32.dll!7c812aeb() 	    [External Code]	    msvcr80.dll!78158ed7() 	    msvcr80.dll!78158e34() 	    msvcr80.dll!78158047() 	    msvcr80.dll!7815850e() 	    msvcr80.dll!78158872() 	    msvcr80.dll!78158a57() 	    msvcr80.dll!78158b11() 	    ntdll.dll!7c9032a8() 	    ntdll.dll!7c90327a() 	    ntdll.dll!7c92a9ef() 	    ntdll.dll!7c90e46a() 	    kernel32.dll!7c812aeb() 	    kernel32.dll!7c812aeb() 	    kernel32.dll!7c812aeb() 	    msvcr80.dll!78139c4d() 	    msvcr80.dll!781323ff() 	    msctf.dll!74755764() 	    msctf.dll!74721557() 	    ws2_32.dll!71ab12bb() 	    ntdll.dll!7c90118a() 	    ntdll.dll!7c91b084() 	    ntdll.dll!7c90de7c() 	    ntdll.dll!7c90d04c() 	    ntdll.dll!7c90e43f() 	    kernel32.dll!7c80b713()

And here's the stack trace that mstest reports - I don't get anything useful out of it.

show/hide this revision's text 6 Added stack trace
show/hide this revision's text 5 Improve formatting
show/hide this revision's text 4 added 58 characters in body
show/hide this revision's text 3 a little new info
show/hide this revision's text 2 fix code
show/hide this revision's text 1