Lines Matching full:main

82     # [        10] <dbg> hello_world: main: debug string
83 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: debug string'),
86 # [ 10] <dbg> hello_world: main: int8_t 1, uint8_t 2
87 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: int8_t 1, uint8_t 2'),
88 # [ 10] <dbg> hello_world: main: int16_t 16, uint16_t 17
89 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: int16_t 16, uint16_t 17'),
90 # [ 10] <dbg> hello_world: main: int32_t 32, uint32_t 33
91 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: int32_t 32, uint32_t 33'),
92 # [ 10] <dbg> hello_world: main: int64_t 64, uint64_t 65
93 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: int64_t 64, uint64_t 65'),
94 # [ 10] <dbg> hello_world: main: char !
95 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: char !'),
96 # [ 10] <dbg> hello_world: main: s str static str c str
97 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: s str static str c str'),
98 # [ 10] <dbg> hello_world: main: d str dynamic str
99 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: d str dynamic str'),
100 # [ 10] <dbg> hello_world: main: mixed str dynamic str --- dynamic str \
102 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: mixed str dynamic str '
104 # [ 10] <dbg> hello_world: main: mixed c/s ! static str dynamic str static str !
105 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: mixed c/s ! static str '
107 # [ 10] <dbg> hello_world: main: pointer 0x1085f9
108 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: pointer 0x[0-9a-f]+'),
109 # [ 10] <dbg> hello_world: main: For HeXdUmP!
110 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: For HeXdUmP!'),
124 # [ 10] <dbg> hello_world: main: float 66.669998, double 68.690000
125 re.compile(r'[\s]+[\[][0-9,:\. ]+[\]] <dbg> hello_world: main: '
155 Main entrance to setup test result validation.