aboutsummaryrefslogtreecommitdiff
path: root/debug/programs/infinite_loop.S
AgeCommit message (Collapse)AuthorFilesLines
2022-11-04Make MulticoreRegTest work with real hardware.Tim Newsome1-1/+1
It would fail intermittently. We can't guarantee all harts resume simultaneously. When we let multiple harts run to a breakpoint at the end of the same loop, one is likely to get there first, and the second won't make it. To avoid this problem, run for a short amount of time instead of to a breakpoint.
2020-02-11Generate very different values on different harts. (#238)Tim Newsome1-0/+1
This way if you end up reading a value that you suspect might be coming from another hart/register, you can clearly see where it came from.
2017-06-22Add basic multicore test.Tim Newsome1-33/+36
2017-06-20Smoketest multicore.Tim Newsome1-0/+40
When connecting to gdb, select a random thread and use that for the current test. Also replace infinite_loop with something that will later allow smoketesting of more than one thread.