vote up 11 vote down star
3

I have a collection of boost unit tests I want to run as a console application.

When I'm working on the project and I run the tests I would like to be able to debug the tests and I would like to have the console stay open after the tests run.

I see that if I run in release mode the console window stays up after the program exits, but in debug mode this is not the case.

I do not want to add 'system("pause");' or any other hacks like reading a character to my program. I just want to make Visual Studio pause after running the tests with debugging like it would if I were running in release mode. I would also like it if the output of tests were captured in one of Visual Studio's output windows but that also seems to be harder than it should be.

How can I do this?

Thanks!

flag

55% accept rate

8 Answers

vote up 6 vote down check

boost test offers the following usage recommendations for visual studio that would enable you to run the unit tests automatically at the end of compilation and capture the output into the build window.

the nice side effect of this trick is it enable you to treat test failures as compilation errors. "...you could jump through these errors using usual keyboard shortcuts/mouse clicks you use for compilation error analysis..."

link|flag
vote up 0 vote down

It would actually be more effort, but you could just build in VS.Net, run it from the regular command line (cmd.exe), and then attach to the process after it starts running. This is probably not the solution you are looking for however.

link|flag
The reason I'm not looking for this solution is because it's a bit heavy handed. I want my tests to run with debugging assertions enabled, so I do want to run in debug mode but I also want to see the test suite output. – Jason Dagit Oct 11 '08 at 1:06
vote up 0 vote down

What about just using a logging library, like log4net, and have it log to a file appender?

link|flag
Well, this is C++ but I get your point. I'm using the BOOST unit testing stuff. I could log things in the test that way, but I have no idea how to make the boost test framework log to somewhere special. – Jason Dagit Oct 11 '08 at 1:20
vote up 0 vote down

You could also setup your executable as an external tool, and mark the tool for Use output window. That way the output of the tool will be visible within Visual Studio itself, not a separate window.

link|flag
vote up 0 vote down

Set a breakpoint on the last line of code.

link|flag
vote up 1 vote down

Why not use the system("pause") hack?

If it's because you don't want the program to prompt when it's not being debugged, there's a way around that. This works for me:

void pause ()   {
system ("pause");
}
int main (int argc, char ** argv)   {
    //	If "launched", then don't let the console close at the end until the
    //	user has seen the report.
    //	(See the MSDN ConGUI sample code)
    //
    do {
    	HANDLE hConsoleOutput = ::GetStdHandle (STD_OUTPUT_HANDLE);
    	if (INVALID_HANDLE_VALUE == hConsoleOutput)	break;
        CONSOLE_SCREEN_BUFFER_INFO csbi;
    	if (0 == ::GetConsoleScreenBufferInfo (hConsoleOutput, &csbi))	break;
    	if (0 != csbi.dwCursorPosition.X)	break;
    	if (0 != csbi.dwCursorPosition.Y)	break;
        if (csbi.dwSize.X <= 0) break;
    	if (csbi.dwSize.Y <= 0)	break;
    	atexit (pause);
    	} while (0);

I just paste this code into each new console app I'm writing. If the program is being run from a command window, the cursor position won't be <0,0> and it won't call atexit(). If it has been launched from you debugger (any debugger) the console cursor position will be <0,0> and the atexit() call will be executed.

I got the idea from a sample program that used to be in the MSDN library, but I think it's been deleted.

Edit addition: The Microsft VS implementation of the system() routine requires the COMSPEC environment variable to identify the command line interpreter. If this environment variable gets messed up -- for example, if you've got a problem in the Visual Studio project's debugging properties so that the environment variables aren't properly passed down when the program is launched -- then it will just fail silently.

link|flag
vote up 8 vote down

Try to run the app with the Ctrl+F5 combination.

link|flag
Thanks for this... very handy. – Saul Dolgin Jun 1 at 15:44
vote up -2 vote down

I usually do something like:

{
    // ...
    char buf[256];
    gets(buf);
}

With this code in place you have to hit enter to end the program. HTH

link|flag
Please read the full question: "I do not want to add 'system("pause");' or any other hacks like reading a character to my program. I just want to make Visual Studio pause after running the tests with debugging like it would if I were running in release mode." – Jason Dagit Aug 20 at 19:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.