Zachary Turner | b6355cc | 2018-11-02 17:49:01 +0000 | [diff] [blame] | 1 | REQUIRES: system-windows |
Jonas Devlieghere | 924d560 | 2018-07-13 10:29:27 +0000 | [diff] [blame] | 2 | RUN: clang-cl /Zi %S/Inputs/VariablesLocationsTest.cpp /o %t.exe |
3 | RUN: %lldb -b -s %S/Inputs/VariablesLocationsTest.script -- %t.exe | FileCheck %s | ||||
4 | |||||
5 | CHECK: g_var = 2222 | ||||
6 | |||||
7 | CHECK: arg_0 = 1111 | ||||
8 | CHECK: arg_1 = 0.123 | ||||
9 | |||||
10 | CHECK: loc_0 = 'x' | ||||
11 | CHECK: loc_1 = 0.567 | ||||
12 | |||||
13 | CHECK: loc_0 = true | ||||
14 | CHECK: loc_1 = 3333 |