summary refs log tree commit diff
path: root/src/test/run-fail
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2012-02-03 09:34:42 +0100
committerMarijn Haverbeke <marijnh@gmail.com>2012-02-03 11:34:12 +0100
commitc1b075d042cabb90f804f3d73e6a4f4b512aa697 (patch)
treeac1501fb72bff6b04597c054c138ae2fc8ce24dc /src/test/run-fail
parent1ea184285eec782f90ecf4e77c854edfb0269e1b (diff)
downloadrust-c1b075d042cabb90f804f3d73e6a4f4b512aa697.tar.gz
rust-c1b075d042cabb90f804f3d73e6a4f4b512aa697.zip
Remove experimental GC code
It's been sitting unused long enough to have bitrotted completely.
Diffstat (limited to 'src/test/run-fail')
-rw-r--r--src/test/run-fail/morestack2.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-fail/morestack2.rs b/src/test/run-fail/morestack2.rs
index 21686b4f3d6..15123a0540d 100644
--- a/src/test/run-fail/morestack2.rs
+++ b/src/test/run-fail/morestack2.rs
@@ -8,14 +8,14 @@
 use std;
 
 native mod rustrt {
-    fn do_gc();
+    fn last_os_error() -> str;
 }
 
 fn getbig_call_c_and_fail(i: int) {
     if i != 0 {
         getbig_call_c_and_fail(i - 1);
     } else {
-        rustrt::do_gc();
+        rustrt::last_os_error();
         fail;
     }
 }