You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
#include <stdio.h>
|
|
|
|
int
|
|
main()
|
|
{
|
|
int test_var = 10;
|
|
printf ("Set a breakpoint here: %d.\n", test_var);
|
|
//% test_var = self.frame().FindVariable("test_var")
|
|
//% test_value = test_var.GetValueAsUnsigned()
|
|
//% self.assertTrue(test_var.GetError().Success(), "Failed to fetch test_var")
|
|
//% self.assertEqual(test_value, 10, "Failed to get the right value for test_var")
|
|
return 0;
|
|
}
|