You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From user's email:
I'm evaluating Google Test on VXWorks with the Wind River compiler.
The source code runs on a special control device with a motorolla
platform, without
any shell to visualize standard out.
So I try to write out a xml file with the right flag --gtest_output.
But nothing happens. Gtest don't want write any file.
I find out, that argv[0] in the main function is empty.
On Windows XP, there is the program name / path.
Original issue reported on code.google.com by vladlosev on 22 Oct 2008 at 6:15
The text was updated successfully, but these errors were encountered:
If you want to work this.
You should use this solution
char *option[] = { "test.exe", //it doesn't have meaning, just dummy
"--gtest_output=xml:filename" };
int argc = 2;
InitGoogleTest( &argc, option );
Original issue reported on code.google.com by
vladlosev
on 22 Oct 2008 at 6:15The text was updated successfully, but these errors were encountered: