This reverts commit a7b78cac9a77e3ef6bbbd8ab1a559891dc693401. With updates to the tests. TestWatchTaggedAddress.py: Updated the expected watchpoint types, though I'm not sure there should be a differnt default for the two ways of setting them, that needs to be confirmed. TestStepOverWatchpoint.py: Skipped this everywhere because I think what used to happen is you couldn't put 2 watchpoints on the same address (after alignment). I guess that this is now allowed because modify watchpoints aren't accounted for, but likely should be. Needs investigating.
21 lines
257 B
C
21 lines
257 B
C
#include <stdint.h>
|
|
int main() {
|
|
int value = 5;
|
|
|
|
value = 5; // break here
|
|
value = 5;
|
|
value = 5;
|
|
value = 5;
|
|
value = 5;
|
|
value = 5;
|
|
value = 10;
|
|
value = 10;
|
|
value = 10;
|
|
value = 10;
|
|
value = 5;
|
|
value = 7;
|
|
value = 9;
|
|
|
|
return value;
|
|
}
|