Fixup tests
This commit is contained in:
parent
22ed23d680
commit
b2dae987f8
@ -37,7 +37,7 @@
|
|||||||
// lldb-command:run
|
// lldb-command:run
|
||||||
|
|
||||||
// lldb-command:v arg
|
// lldb-command:v arg
|
||||||
// lldb-check:[...] { b = -1, b1 = 0 }
|
// lldb-check:[...] { b = -1 b1 = 0 }
|
||||||
// lldb-command:continue
|
// lldb-command:continue
|
||||||
|
|
||||||
// lldb-command:v inferred
|
// lldb-command:v inferred
|
||||||
@ -51,7 +51,7 @@
|
|||||||
// lldb-command:continue
|
// lldb-command:continue
|
||||||
|
|
||||||
// lldb-command:v arg
|
// lldb-command:v arg
|
||||||
// lldb-check:[...] (4, 5)
|
// lldb-check:[...] { 0 = 4 1 = 5 }
|
||||||
// lldb-command:continue
|
// lldb-command:continue
|
||||||
|
|
||||||
// lldb-command:v a
|
// lldb-command:v a
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
// STACK BY REF
|
// STACK BY REF
|
||||||
// lldb-command:v *self
|
// lldb-command:v *self
|
||||||
// lldb-check:[...] { x = { 0 = 8888, 1 = -8888 } }
|
// lldb-check:[...] { x = { 0 = 8888 1 = -8888 } }
|
||||||
// lldb-command:v arg1
|
// lldb-command:v arg1
|
||||||
// lldb-check:[...] -1
|
// lldb-check:[...] -1
|
||||||
// lldb-command:v arg2
|
// lldb-command:v arg2
|
||||||
@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
// STACK BY VAL
|
// STACK BY VAL
|
||||||
// lldb-command:v self
|
// lldb-command:v self
|
||||||
// lldb-check:[...] { x = { 0 = 8888, 1 = -8888 } }
|
// lldb-check:[...] { x = { 0 = 8888 1 = -8888 } }
|
||||||
// lldb-command:v arg1
|
// lldb-command:v arg1
|
||||||
// lldb-check:[...] -3
|
// lldb-check:[...] -3
|
||||||
// lldb-command:v arg2
|
// lldb-command:v arg2
|
||||||
|
@ -18,14 +18,14 @@
|
|||||||
// lldb-command:run
|
// lldb-command:run
|
||||||
|
|
||||||
// lldb-command:v int_int
|
// lldb-command:v int_int
|
||||||
// lldb-check:[...] AGenericStruct<i32, i32> { key: 0, value: 1 }
|
// lldb-check:[...]AGenericStruct<int, int>) int_int = { key = 0 value = 1 }
|
||||||
// lldb-command:v int_float
|
// lldb-command:v int_float
|
||||||
// lldb-check:[...] AGenericStruct<i32, f64> { key: 2, value: 3.5 }
|
// lldb-check:[...]AGenericStruct<int, double>) int_float = { key = 2 value = 3.5 }
|
||||||
// lldb-command:v float_int
|
// lldb-command:v float_int
|
||||||
// lldb-check:[...] AGenericStruct<f64, i32> { key: 4.5, value: 5 }
|
// lldb-check:[...]AGenericStruct<double, int>) float_int = { key = 4.5 value = 5 }
|
||||||
|
|
||||||
// lldb-command:v float_int_float
|
// lldb-command:v float_int_float
|
||||||
// lldb-check:[...] AGenericStruct<f64, generic_struct::AGenericStruct<i32, f64>> { key: 6.5, value: AGenericStruct<i32, f64> { key: 7, value: 8.5 } }
|
// lldb-check:[...]AGenericStruct<double, generic_struct::AGenericStruct<int, double> >) float_int_float = { key = 6.5 value = { key = 7 value = 8.5 } }
|
||||||
|
|
||||||
// === CDB TESTS ===================================================================================
|
// === CDB TESTS ===================================================================================
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
// STACK BY REF
|
// STACK BY REF
|
||||||
// lldb-command:v *self
|
// lldb-command:v *self
|
||||||
// lldb-check:[...] Struct<(u32, i32)> { x: (8888, -8888) }
|
// lldb-check:[...]Struct<(u32, i32)>) *self = { x = { 0 = 8888 1 = -8888 } }
|
||||||
// lldb-command:v arg1
|
// lldb-command:v arg1
|
||||||
// lldb-check:[...] -1
|
// lldb-check:[...] -1
|
||||||
// lldb-command:v arg2
|
// lldb-command:v arg2
|
||||||
@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
// STACK BY VAL
|
// STACK BY VAL
|
||||||
// lldb-command:v self
|
// lldb-command:v self
|
||||||
// lldb-check:[...] Struct<(u32, i32)> { x: (8888, -8888) }
|
// lldb-check:[...]Struct<(u32, i32)>) self = { x = { 0 = 8888 1 = -8888 } }
|
||||||
// lldb-command:v arg1
|
// lldb-command:v arg1
|
||||||
// lldb-check:[...] -3
|
// lldb-check:[...] -3
|
||||||
// lldb-command:v arg2
|
// lldb-command:v arg2
|
||||||
@ -74,7 +74,7 @@
|
|||||||
|
|
||||||
// OWNED BY REF
|
// OWNED BY REF
|
||||||
// lldb-command:v *self
|
// lldb-command:v *self
|
||||||
// lldb-check:[...] Struct<f64> { x: 1234.5 }
|
// lldb-check:[...]Struct<double>) *self = { x = 1234.5 }
|
||||||
// lldb-command:v arg1
|
// lldb-command:v arg1
|
||||||
// lldb-check:[...] -5
|
// lldb-check:[...] -5
|
||||||
// lldb-command:v arg2
|
// lldb-command:v arg2
|
||||||
@ -83,7 +83,7 @@
|
|||||||
|
|
||||||
// OWNED BY VAL
|
// OWNED BY VAL
|
||||||
// lldb-command:v self
|
// lldb-command:v self
|
||||||
// lldb-check:[...] Struct<f64> { x: 1234.5 }
|
// lldb-check:[...]Struct<double>) self = { x = 1234.5 }
|
||||||
// lldb-command:v arg1
|
// lldb-command:v arg1
|
||||||
// lldb-check:[...] -7
|
// lldb-check:[...] -7
|
||||||
// lldb-command:v arg2
|
// lldb-command:v arg2
|
||||||
@ -92,7 +92,7 @@
|
|||||||
|
|
||||||
// OWNED MOVED
|
// OWNED MOVED
|
||||||
// lldb-command:v *self
|
// lldb-command:v *self
|
||||||
// lldb-check:[...] Struct<f64> { x: 1234.5 }
|
// lldb-check:[...]Struct<double>) *self = { x = 1234.5 }
|
||||||
// lldb-command:v arg1
|
// lldb-command:v arg1
|
||||||
// lldb-check:[...] -9
|
// lldb-check:[...] -9
|
||||||
// lldb-command:v arg2
|
// lldb-command:v arg2
|
||||||
|
Loading…
Reference in New Issue
Block a user