chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
Welcome to Typemock Community! Here you can ask and receive answers from other community members. If you liked or disliked an answer or thread: react with an up- or downvote.
0 votes
When I run the VS2008 Isolator++ examples in x64 Debug mode, this error message appears:

[ img ]

MSVCP100D.dll does not exist on my machine (MSVCP100.dll does), so it appears MSVCP100D.dll needs to be packaged with the Isolator++ installer.
asked by NeilJustice (14.1k points)

3 Answers

0 votes
Hi Neil,

You're right. The problems you experience stem from these assumptions:

1. The examples are designed to work on x86, rather than x64 (we havent updated
2. VS 2010 is installed on the machine (that's where the ugly message box comes from. In fact, it's not that Isolator++ needs the VS 2010 DLLs, it's the GoogleTest framework we've thrown in there for the examples).

It's a bit messed up, I agree.
We're planning a major overhaul to both docs and examples. Until then, I suggest either

1. You try to run the examples where VS 2010
2. Skip the examples and work in VS 2008 directly
3. If you have a more recent VS, you can take a look at a demo zip file, that has VS 2013 examples, running on MS Test framework. You can find it the file here .
answered by gilz (14.5k points)
0 votes
Hi Gil,

Thanks for that .zip file with Isolator++ examples in VS2013.

With VS 2013 Update 1 I encountered these issues when trying to build the examples.

Project GTest in Win32 Debug compiles then displays this error message at startup:

[ img ]

And projects Tests and GTest in Win32 Release give these two #include errors:

1>------ Build started: Project: Tests, Configuration: Release Win32 ------
2>------ Build started: Project: GTest, Configuration: Release Win32 ------
1> stdafx.cpp
2> GTest.cpp
2>GTest.cpp(5): fatal error C1083: Cannot open include file: 'isolator.h': No such file or directory
1>c:downloadsisolatorppdemo estsstdafx.h(11): fatal error C1083: Cannot open include file: 'Isolator.h': No such file or directory
========== Build: 0 succeeded, 2 failed, 1 up-to-date, 0 skipped ==========
answered by NeilJustice (14.1k points)
0 votes
Hi Neil,

The demo files are examples converted to MSTest, and I didn't make the changes for 64 bit or release. That includes include paths, linked libs and copying the correct gtest libs to the output folder (that's where the dialog comes from).

We've already started working on to make proper examples out of the box, I hope to have a better version out next week. In the mean time, please let me know if the debug version seems to work.
answered by gilz (14.5k points)
...