14

I am trying to run intellitest on x64 project (for that matter i even tried to create simple 64x project)

public class Program
{
    public static void Main(string[] args)
    {
        if(args == null)
            throw new Exception("test");
    }
}

but for some reason all i get in intellitest output is

saving all files
building project
Launching exploration
starting...
preparing monitored process for 'C:\Users\User\Documents\Visual Studio 2012\Projects\Unitest\ConsoleApplication9\bin\Debug\ConsoleApplication9.exe'
failed to prepare process for assembly 'C:\Users\User\Documents\Visual Studio 2012\Projects\Unitest\ConsoleApplication9\bin\Debug\ConsoleApplication9.exe'
monitored process exited with error while loading assembly (-1006 - 0xfffffc12)
finished
atikot
  • 4,761
  • 4
  • 26
  • 34

1 Answers1

3

Thank you for the feedback. This is by design. IntelliTest is not supported for x64 configuration at the moment.

pvlakshm
  • 1,365
  • 7
  • 7
  • Really hard to love VS when design decisions like this are made. – Basic May 04 '16 at 15:15
  • 2
    Please consider voting for the feature here: https://visualstudio.uservoice.com/forums/121579-visual-studio-2015/suggestions/10139661-enable-intellitest-for-64-bit-projects. We are grateful for your feedback. – pvlakshm May 11 '16 at 17:04
  • Still not working by design? This is kind of ridiculous that MSFT is forcing my programs into a 32 or 64 bit selection and then not supporting those coercions. – StingyJack Dec 03 '17 at 13:18
  • How is it this guy doesnt really seem to know _anything_ considering his position? https://developercommunity.visualstudio.com/content/problem/159390/intellitest-failed-to-prepare-process-for-asssembl.html – StingyJack Mar 24 '18 at 20:34