Skip to main content
Filter by
Sorted by
Tagged with
2 votes
2 answers
183 views

I want to add a breakpoint in the line system("/path/to/world") in VS Code for debugging the /path/to/world program with gdb. Here is the source code of /path/to/hello.c: int main(int argc, ...
stackbiz's user avatar
  • 1,916
0 votes
0 answers
45 views

I can't seem the resize the font in the Breakpoints windows of VS (Debug -> Windows -> Breakpoints). I tried to tweak all the options under fonts and color: "Tools -> Options -> ...
Tibz's user avatar
  • 9
-1 votes
1 answer
134 views

In trying to run tests on my app in Swift, I am encountering a problem. I do not have any breakpoints set, and yet, the execution of the tests is being interrupted on the line containing "throw ...
ratbum's user avatar
  • 1,035
1 vote
1 answer
143 views

When I hit a breakpoint in Xcode 16.0, it shows me the debugging view shown below, where each stack frame has its own little window corresponding that place in the code. However, I want the old view ...
meisel's user avatar
  • 2,605
0 votes
0 answers
59 views

I'm working on a project using the STR736FV2T6 microcontroller in Keil µVision 5.42 with a ULINK2 debugger. My firmware builds and runs, but I can't set breakpoints in the C source code — they only ...
Woopy's user avatar
  • 9
2 votes
1 answer
468 views

I was having a normal working day debugging an UI issue with a working env on Xcode 16.2 on simulator 18.0 iphone pro 16... was able to debug and breakpoints were working fine... after a small UI ...
rickrvo's user avatar
  • 595
0 votes
0 answers
26 views

I'm using Visual Studio 2008 Professional, and I have it set (via Control Panel\Sound) to play a particular sound when a Breakpoint is hit. That works just fine for debugging Win32 desktop programs, ...
user3648496's user avatar
0 votes
0 answers
39 views

I am debuging remotly a ".net mvc web app" deployed in azure app service from Visual studio 2022, i managed to hit my breakpoints but my spies do not show any value, instead the value column ...
rachid.bouali's user avatar
3 votes
0 answers
105 views

Hey does anyone have a fix for the VSCode gdb debugger running inside of the IDE at some point won't observe breakpoints and the red dots turn to little grey circles. It might be good information that ...
kinglouie's user avatar
0 votes
1 answer
64 views

Having a really hard time setting up a breakpoint for debugger in VSCode to a very simple express project which uses tsx. I have 3 files inside my src directory src/app.ts import express, { ...
PirateApp's user avatar
  • 6,362
0 votes
0 answers
61 views

How do I enter into a function in Python Breakpoint in the terminal? I am trying to enter into a function that I called with my code but in the terminal, PDB just goes through it, like this: -> def ...
Alireza Reisi's user avatar
0 votes
0 answers
38 views

I am using CppuTest (https://cpputest.github.io/) for Unit-Testing embedded Software Code. CppuTest is used as a static compiled library, created by myself. Compiler is MinGW gcc (TDM-2 mingw32) 4.4.1-...
user19471767's user avatar
0 votes
0 answers
31 views

Problem: I want to debug a simple js file with node. Expected Result: THe debugger starts and stops at the break point. -> but the debugger does not stop at break-points and simply runs through the ...
MarcL's user avatar
  • 3,613
2 votes
2 answers
117 views

I use rlwrap to debug a Java process rlwrap jdb -attach 192.168.5.55:9999 When the breakpoint stop: > stop in comm.app.aaa.func > set a = 0 > cont I do that few times, each time the ...
python3.789's user avatar
0 votes
1 answer
2k views

I've read most all of the posts about setting up PHP Xdebug for VS Code but no solution for me. I've installed VS Code on a new laptop (that's relevant because I know what else is installed and there ...
john murray's user avatar
1 vote
2 answers
115 views

I use the commands: dbstop if error and dbstop if warning Is it possible to combine those conditions, to stop at either warning or error? As far as I tried, the latter doesn't catch both. Ideally, ...
NoamG's user avatar
  • 165
1 vote
0 answers
69 views

Everything works fine except this script and its a really small problem. When it runs it opens a yes or no window and clicking yes makes the cd audio door open and close after 7 seconds but it instead ...
Sebastian Kavci's user avatar
3 votes
1 answer
153 views

When you hit a breakpoint in a multi-threaded C# application, I thought that all threads were stopped. So, I expected, when hitting a breakpoint, that I would be able to thaw other threads, but ...
Dominique's user avatar
  • 17.6k
3 votes
1 answer
174 views

In GDB, I am trying to set breakpoint on line 4 but it always puts a breakpoint at line 5. Even if I put break main, it puts point on line 5, whereas line 4 is the first line. Why and how can I fix ...
mapleGUARD's user avatar
0 votes
0 answers
38 views

I'm trying to make some modifications to the DotNetCoreRazor_MSGraph sample project so that instead of just presenting mails, regardless of folder, it first creates the folder structure. This is the ...
Lisa's user avatar
  • 75
0 votes
0 answers
330 views

When I set a breakpoint in my pytest test functions, it seems to be debugging within the functions called by test rather than the test itself: def test_my_function(): test_value = np.random.choice(...
Alissa's user avatar
  • 99
1 vote
1 answer
108 views

I created a custom ribbon UI for Excel, using the Office Ribbon X Editor. On that ribbon are several toggleButtons. The XML looks like this: <customUI xmlns="http://schemas.microsoft.com/...
LuPi1801's user avatar
1 vote
0 answers
35 views

I have two python scripts, test_breakpoints.py and test_breakpoints_import.py (see below), with breakpoints set in PyCharm. The former script imports a function from the latter. When using the ...
silence_of_the_lambdas's user avatar
1 vote
2 answers
79 views

I recently tried to build a project with clang and clang++. Up to now it has only been built with GCC. One of the problems that I saw was with code that is of the following form if (expression) { ...
Paul Floyd's user avatar
  • 7,170
2 votes
1 answer
111 views

I have two projects in the project group that use the same units. If I set breakpoints in one, then build and run the other, the breakpoints still apply: Can breakpoints be active for one project ...
Jan Doggen's user avatar
  • 9,086

1
2 3 4 5
60