User Dushara - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:49:15Z http://stackoverflow.com/feeds/user/54018 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823233/how-to-implement-dependency-checking-for-c-c-sources 0 How to implement dependency checking for C/C++ sources Dushara 2009-11-30T23:54:14Z 2009-12-10T04:53:01Z <p>I started adding support for a 3rd party toolchain (IAR Compiler) to Visual Studio 2005.</p> <p>So far I've managed to implement the required msbuild tasks (Compile, Link and Assemble) and the Visual Studio Add-in to support the *.proj file.</p> <p>The next hurdle is handling dependencies for the headers. I'm not sure what the best way to go about this is.</p> <p>The IAR compiler provides a command line switch to get the list of header files a source depends on, but how should I provide this information to Visual Studio/MSBuild?</p> http://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language/613505#613505 1 Answer by Dushara for Where can I find standard BNF or YACC grammar for C++ language? Dushara 2009-03-05T03:41:35Z 2009-03-05T03:41:35Z <p>I found <a href="http://www.sigala.it/sandro/software.php#grammars" rel="nofollow">this one</a> recently. I haven't tried it out, so am not sure if it works. Could you give more info on the tool you're trying to develop? I downloaded this grammar because I'm working on an instrumentation tool so I can add coverage info for my <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">unit test framework</a>.</p> http://stackoverflow.com/questions/605915/unit-test-compile-time-error/608880#608880 5 Answer by Dushara for Unit test compile-time error. Dushara 2009-03-04T01:05:00Z 2009-03-04T02:37:23Z <p>You can do it using make. Each test will be a code snippet. Here's a working example with 2 tests for VC++. (I've used 2 batch files for pass test and fail test). I'm using GNU make here.</p> <p>Makefile:</p> <pre><code> FAILTEST = .\failtest.bat PASSTEST = .\passtest.bat tests: must_fail_but_passes \ must_pass_but_fails must_fail_but_passes: @$(FAILTEST) $@.cpp must_pass_but_fails: @$(PASSTEST) $@.cpp </code></pre> <p>must_pass_but_fails.cpp <pre><code> struct Foo { int value_; Foo(void) : value_(0) {} private: Foo(const Foo&amp;); const Foo&amp; operator=(const Foo&amp;); };</p> <p>int main() { Foo f(12); return 0; } </pre></code></p> <p>must_fail_but_passes.cpp <pre><code> struct Foo { int value_; Foo(int value) : value_(value) {} private: Foo(const Foo&amp;); const Foo&amp; operator=(const Foo&amp;); };</p> <p>int main() { Foo f(12); return 0; } </pre></code></p> <p>passtest.bat <pre><code> @echo off cl /nologo %1 >NUL if %errorlevel% == 0 goto pass @echo %1 FAILED :pass </pre></code></p> <p>failtest.bat <pre><code> @echo off cl /nologo %1 >NUL if not %errorlevel% == 0 goto pass @echo %1 FAILED :pass </pre></code></p> <p>Note that cl.exe (i.e. Visual Studio compiler) need to be in your path for this to "just work"</p> <p>Have fun!</p> <p>P.S. I doubt that this would make me famous though :-)</p> http://stackoverflow.com/questions/602138/is-a-debugger-the-mother-of-all-evil/605146#605146 0 Answer by Dushara for Is a debugger the mother of all evil? Dushara 2009-03-03T04:47:38Z 2009-03-03T04:47:38Z <p>This is a troll isn't it?</p> http://stackoverflow.com/questions/599773/cross-platform-unit-testing-in-c/601035#601035 0 Answer by Dushara for cross platform unit testing in C Dushara 2009-03-02T01:51:51Z 2009-03-02T01:51:51Z <p>Hi, I use my own unit testing framework <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a> for embedded C stuff. My host dev environment is Win32 so the framework that is available on-line is for Windows only. However, I did port it to Linux as well, so if the framework works for you, drop me a comment here and we'll work out a way to get your the Linux version.</p> <p>D</p> http://stackoverflow.com/questions/580342/setting-up-a-mock-interface-in-c/593720#593720 -1 Answer by Dushara for Setting up a mock interface in C++ Dushara 2009-02-27T06:25:11Z 2009-02-27T06:30:30Z <p>I've used a relatively hacky, non-portable method for mocking functions, in WIN32 environment (I think it's 32 bit only, but not sure). here it is:</p> <pre><code>#define INJECTED_BYTES 5 static void replace_target(void *Target, void *Server) { DWORD dwOld; VirtualProtect(Target, INJECTED_BYTES, PAGE_WRITECOPY, &amp;dwOld); *((unsigned char *)Target)++ = 0xe9 ; // jump relative *(unsigned int *)Target = (unsigned int)((unsigned char *)Server - (unsigned char *)Target)-4; VirtualProtect(((unsigned char *)Target)-1, INJECTED_BYTES, PAGE_EXECUTE, &amp;dwOld); FlushInstructionCache(GetCurrentProcess(), 0, 0); } </code></pre> <p>What this does is, it replaces the first few bytes of the target function with a jump to your mocked function. So when you call the target, it jumps directly to your stub. Just remember to keep a copy of the replaced bytes (INJECTED_BYTES) so you can later on undo your mock.</p> <p>Come to think of it, what's stopping you from writing your own DLL that only stubs out what the real DLL does?</p> http://stackoverflow.com/questions/593414/how-to-test-a-static-function/593663#593663 2 Answer by Dushara for How to test a static function Dushara 2009-02-27T06:02:19Z 2009-02-27T06:02:19Z <p>static functions are essentially helper functions to the public (i.e. exposed) functions. So IMO, your unit tests should call the public interface with inputs that exercise all the paths in the static function.</p> <p>The output (return values / side effects) of the public function should be used to test the effect of the static.</p> <p>This means you need to have appropriate stubs to 'catch' these side effects. (e.g. if a function calls file IO, you need to provide stubs to override these file IO lib functions). The best way to do this by making each test suite a seperate project/executable and avoid linking to any external lib functions. You can mock even C functions, but it's not worth the effort.</p> <p>Anyway, this is the approach I've used so far and it works for me. Good luck</p> http://stackoverflow.com/questions/258425/building-and-running-c-unit-tests-in-visual-studio-tdd/579631#579631 0 Answer by Dushara for Building and running C++ unit tests in Visual Studio (TDD) Dushara 2009-02-23T22:20:36Z 2009-02-23T22:20:36Z <p>Don't know if you're still looking for a solution. But here's an idea:</p> <p>You can keep all your tests in one library and write an application that spawns itself and executes each test. This way you end up with one executable (and hence one project) for a suite and each test will be like a separate executable.</p> <p>This is in-fact the mechanism used in <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a>. You might even be able to wrap your tests in that framework.</p> http://stackoverflow.com/questions/387272/unit-testing-in-c/543702#543702 0 Answer by Dushara for Unit testing in C++ Dushara 2009-02-12T22:17:47Z 2009-02-12T22:17:47Z <p>Have a look at <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a>. It includes an example.</p> http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology/543696#543696 1 Answer by Dushara for Unit testing for C++ code - Tools and methodology Dushara 2009-02-12T22:16:59Z 2009-02-12T22:16:59Z <p>Have a look at <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a>. It's written for MS Visual C. It includes an example.</p> http://stackoverflow.com/questions/185050/c-testing-framework-recommendation-sought/543684#543684 0 Answer by Dushara for C++ testing framework: recommendation sought Dushara 2009-02-12T22:14:22Z 2009-02-12T22:14:22Z <p>Have a look at <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a>. It includes an example.</p> http://stackoverflow.com/questions/234503/what-are-you-using-to-unit-test-your-c-code/543681#543681 0 Answer by Dushara for What are you using to unit test your C++ code? Dushara 2009-02-12T22:13:34Z 2009-02-12T22:13:34Z <p>Have a look at <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a>. It includes an example.</p> http://stackoverflow.com/questions/3150/how-to-set-up-unit-testing-for-visual-studio-c/543678#543678 0 Answer by Dushara for How to set up unit testing for Visual Studio C++ Dushara 2009-02-12T22:13:14Z 2009-02-12T22:13:14Z <p>Have a look at <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a>. It includes an example.</p> http://stackoverflow.com/questions/111122/how-do-you-integrate-a-tdd-approach-with-visualstudio/543668#543668 0 Answer by Dushara for How do you integrate a TDD approach with VisualStudio? Dushara 2009-02-12T22:12:07Z 2009-02-12T22:12:07Z <p>Have a look at <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a>. There's an example included as well.</p> http://stackoverflow.com/questions/437233/testing-frameworks-for-c/543586#543586 0 Answer by Dushara for Testing Frameworks for C Dushara 2009-02-12T21:58:40Z 2009-02-12T21:58:40Z <p>You certainly can do unit testing in C (I do). The framework I use (for the Windows platform) is <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CunitWin32</a></p> http://stackoverflow.com/questions/333388/information-on-tap-and-tdd-for-c/543567#543567 0 Answer by Dushara for information on TAP and TDD for 'C' Dushara 2009-02-12T21:56:32Z 2009-02-12T21:56:32Z <p>I using <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a> as my testing framework. The front-page highlights the positives</p> http://stackoverflow.com/questions/148576/how-to-test-c-code/543552#543552 0 Answer by Dushara for How to test C Code Dushara 2009-02-12T21:55:08Z 2009-02-12T21:55:08Z <p>If you're using Windows as your dev environment, <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a> might serve your purpose</p> http://stackoverflow.com/questions/177251/unit-testing-frameworks-for-c/543526#543526 1 Answer by Dushara for Unit Testing Frameworks for C Dushara 2009-02-12T21:52:58Z 2009-02-12T21:52:58Z <p>I write embedded software using C and I decided to write my own framework. It's very simple and written for MS Visual Studio. It's easily ported to other platforms. </p> <p><a href="http://code.google.com/p/cunitwin32/" rel="nofollow">http://code.google.com/p/cunitwin32/</a></p> <p>If you're targeting linux I think Check might suite your needs.</p> http://stackoverflow.com/questions/65820/unit-testing-c-code/434114#434114 0 Answer by Dushara for Unit Testing C Code Dushara 2009-01-12T00:30:39Z 2009-01-12T00:30:39Z <p>If you're still on the hunt for test frameworks, <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">CUnitWin32</a> is one for the Win32/NT platform.</p> <p>This solves one fundamental problem that I faced with other testing frameworks. Namely global/static variables are in a deterministic state because each test is executed as a separate process.</p> http://stackoverflow.com/questions/605915/unit-test-compile-time-error/608880#608880 Comment by Dushara on Unit test compile-time error. Dushara 2009-03-04T01:09:03Z 2009-03-04T01:09:03Z This editor is chopping half the Makefile and I don't know why. It should have 2 other lines: test2: must_pass_but_fails.cpp @$(PASSTEST) $ http://stackoverflow.com/questions/580342/setting-up-a-mock-interface-in-c/593720#593720 Comment by Dushara on Setting up a mock interface in C++ Dushara 2009-02-27T06:26:37Z 2009-02-27T06:26:37Z BTW you might want to create a wrapper for the DLL and mock that wrapper. http://stackoverflow.com/questions/177251/unit-testing-frameworks-for-c/543526#543526 Comment by Dushara on Unit Testing Frameworks for C Dushara 2009-02-12T21:53:57Z 2009-02-12T21:53:57Z P.S. It handles memory access violations etc gracefully (I also use it in an automated environment)