Begin valgrinding some run-fail tests that unwind correctly

Issue #236
This commit is contained in:
Brian Anderson 2011-09-07 17:03:20 -07:00
parent f99cf2d62f
commit f28bbb2f95
5 changed files with 0 additions and 5 deletions

View file

@ -1,3 +1,2 @@
// error-pattern:wooooo
// no-valgrind
fn main() { let a = 1; if 1 == 1 { a = 2; } fail "woooo" + "o"; }

View file

@ -1,5 +1,4 @@
// error-pattern:meh
// no-valgrind
use std;
fn main() { let str_var: str = "meh"; fail #fmt["%s", str_var]; }

View file

@ -2,7 +2,6 @@
// error-pattern:1 == 2
// no-valgrind
use std;
import std::task;
import std::comm::port;

View file

@ -1,7 +1,6 @@
// -*- rust -*-
// error-pattern:bounds check
// no-valgrind
fn main() {
let v: [int] = [10];
let x: int = 0;

View file

@ -1,7 +1,6 @@
// -*- rust -*-
// error-pattern:bounds check
// no-valgrind
fn main() {
let v: [int] = [10, 20];
let x: int = 0;