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
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,16 @@ Enable logging for debugging:
53
53
- logpanel: Shows logs in VS Code's Output panel ("CppUTest Test Adapter Log").
54
54
- logfile: Saves logs to a file. Use absolute paths and ensure the directory exists.
55
55
56
+
## Ignore Stderr
57
+
By default, any output to stderr is treated as a test failure. If your tests produce warnings or logs on stderr without actually failing, you can disable this behavior:
58
+
59
+
```json
60
+
{
61
+
"cpputestTestAdapter.ignoreStderr": true
62
+
}
63
+
```
64
+
- When `true`, stderr output is not automatically treated as test failure. Tests are marked as failed only if actual failure markers are detected in the output.
65
+
56
66
## Debugging
57
67
To debug your tests, configure your launch.json like you would with any debugger (in this case gdb):
0 commit comments