2018-09-21 04:31:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2021-03-01 17:00:21 +00:00
|
|
|
g++ -gdwarf-4 -g test.cpp
|
2018-09-21 04:31:47 +00:00
|
|
|
|
|
|
|
test `lldb -b -o 'breakpoint set --file test.cpp --line 7' -o run -o 'p v' -- a.out \
|
|
|
|
| grep \
|
|
|
|
-e '(std::vector<int, std::allocator<int> >) $0 = size=1 {' \
|
|
|
|
-e '\[0\] = 2' \
|
|
|
|
| wc -l` -eq 2
|