summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2020-08-18 16:45:23 -0700
committerChristopher Ferris <cferris@google.com>2020-08-18 16:53:06 -0700
commit5a1e23a9de422395f9521ac85c56dc5cb02cf7ed (patch)
tree8e35d1f3dcd1033919f5ae8c030f05dbb0303a68
parent5ac6f0da4369c229f8d377b34e5082c30024bfd8 (diff)
downloadgtest_extras-5a1e23a9de422395f9521ac85c56dc5cb02cf7ed.tar.gz
Fix extraneous print of -j.
I'm not sure when this snuck in, but there is an extra -j in the help output, remove that. Test: All unit tests pass. Test: Verified no extra -j in help output. Change-Id: Ic08765b8479ddf7ec6d0926176d3ddb363cb458a
-rw-r--r--IsolateMain.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/IsolateMain.cpp b/IsolateMain.cpp
index 9c368b3..898fb52 100644
--- a/IsolateMain.cpp
+++ b/IsolateMain.cpp
@@ -69,10 +69,8 @@ static void PrintHelpInfo() {
printf(
" will be called slow.\n"
" Only valid in isolation mode. Default slow threshold is 2000 ms.\n");
- ColoredPrintf(COLOR_GREEN, "-j");
printf(
- ".\n"
- "In isolation mode, you can send SIGQUIT to the parent process to show the\n"
+ "\nIn isolation mode, you can send SIGQUIT to the parent process to show the\n"
"current running tests, or send SIGINT to the parent process to stop all\n"
"running tests.\n"
"\n");