about summary refs log tree commit diff
path: root/src/test/debug-info/method-on-struct.rs
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@gmail>2013-12-17 16:54:22 +0100
committerMichael Woerister <michaelwoerister@gmail>2013-12-17 18:08:51 +0100
commit01fae5fb2a0425af2830b2525c49d27bfba68899 (patch)
tree4394bc6679d2cdc8802e7595775fd8a0e330d6f9 /src/test/debug-info/method-on-struct.rs
parent0f98cb41988d1fdd0cb33fb274253cba3bde5cfa (diff)
downloadrust-01fae5fb2a0425af2830b2525c49d27bfba68899.tar.gz
rust-01fae5fb2a0425af2830b2525c49d27bfba68899.zip
debuginfo: Updated test cases to also test by-value self arguments.
Diffstat (limited to 'src/test/debug-info/method-on-struct.rs')
-rw-r--r--src/test/debug-info/method-on-struct.rs48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/test/debug-info/method-on-struct.rs b/src/test/debug-info/method-on-struct.rs
index 9c2afadaef3..e88e5a5ca63 100644
--- a/src/test/debug-info/method-on-struct.rs
+++ b/src/test/debug-info/method-on-struct.rs
@@ -26,72 +26,72 @@
 
 // STACK BY VAL
 // debugger:finish
-// d ebugger:print self -- ignored for now because of issue #8512
-// c heck:$X = {x = 100}
+// debugger:print self
+// check:$4 = {x = 100}
 // debugger:print arg1
-// check:$4 = -3
+// check:$5 = -3
 // debugger:print arg2
-// check:$5 = -4
+// check:$6 = -4
 // debugger:continue
 
 // OWNED BY REF
 // debugger:finish
 // debugger:print *self
-// check:$6 = {x = 200}
+// check:$7 = {x = 200}
 // debugger:print arg1
-// check:$7 = -5
+// check:$8 = -5
 // debugger:print arg2
-// check:$8 = -6
+// check:$9 = -6
 // debugger:continue
 
 // OWNED BY VAL
 // debugger:finish
-// d ebugger:print self -- ignored for now because of issue #8512
-// c heck:$X = {x = 200}
+// debugger:print self
+// check:$10 = {x = 200}
 // debugger:print arg1
-// check:$9 = -7
+// check:$11 = -7
 // debugger:print arg2
-// check:$10 = -8
+// check:$12 = -8
 // debugger:continue
 
 // OWNED MOVED
 // debugger:finish
 // debugger:print *self
-// check:$11 = {x = 200}
+// check:$13 = {x = 200}
 // debugger:print arg1
-// check:$12 = -9
+// check:$14 = -9
 // debugger:print arg2
-// check:$13 = -10
+// check:$15 = -10
 // debugger:continue
 
 // MANAGED BY REF
 // debugger:finish
 // debugger:print *self
-// check:$14 = {x = 300}
+// check:$16 = {x = 300}
 // debugger:print arg1
-// check:$15 = -11
+// check:$17 = -11
 // debugger:print arg2
-// check:$16 = -12
+// check:$18 = -12
 // debugger:continue
 
 // MANAGED BY VAL
 // debugger:finish
-// d ebugger:print self -- ignored for now because of issue #8512
-// c heck:$X = {x = 300}
+// debugger:print self
+// check:$19 = {x = 300}
 // debugger:print arg1
-// check:$17 = -13
+// check:$20 = -13
 // debugger:print arg2
-// check:$18 = -14
+// check:$21 = -14
 // debugger:continue
 
 // MANAGED SELF
 // debugger:finish
 // debugger:print self->val
-// check:$19 = {x = 300}
+// check:$22 = {x = 300}
 // debugger:print arg1
-// check:$20 = -15
+// check:$23 = -15
 // debugger:print arg2
-// check:$21 = -16
+// check:$24 = -16
 // debugger:continue
 
 #[feature(managed_boxes)];