which provide some convenient ways to print an SBValue object. Use that in TestValueAPI.py to print the 'days_of_week' char* array variable. For an example: cvf = lldbutil.ChildVisitingFormatter(indent=2) print cvf.format(days_of_week) produces: (const char *[7]) days_of_week = 0x00000001026a5060 (location) (const char *) [0] = "Sunday" (const char *) [1] = "Monday" (const char *) [2] = "Tuesday" (const char *) [3] = "Wednesday" (const char *) [4] = "Thursday" (const char *) [5] = "Friday" (const char *) [6] = "Saturday" llvm-svn: 135736
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
//===-- main.c --------------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include <stdio.h>
|
|
|
|
// This simple program is to test the lldb Python API SBValue.GetChildAtIndex().
|
|
|
|
int g_my_int = 100;
|
|
|
|
const char *days_of_week[7] = { "Sunday",
|
|
"Monday",
|
|
"Tuesday",
|
|
"Wednesday",
|
|
"Thursday",
|
|
"Friday",
|
|
"Saturday" };
|
|
|
|
int main (int argc, char const *argv[])
|
|
{
|
|
int i;
|
|
const char **str_ptr = days_of_week;
|
|
for (i = 0; i < 7; ++i)
|
|
printf("%s\n", str_ptr[i]); // Break at this line
|
|
// and do str_ptr_val.GetChildAtIndex(5, lldb.eNoDynamicValues, True).
|
|
|
|
return 0;
|
|
}
|