summary refs log tree commit diff
path: root/src/test/stdtest
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-11-28 13:28:03 -0800
committerBrian Anderson <banderson@mozilla.com>2011-11-28 13:28:03 -0800
commit92f1e9f1ab347087f4005c2e2fa5a2d805e1d888 (patch)
treeb989c18df2efeabbd5c24adb98814629db907261 /src/test/stdtest
parent90d27af42a7af82608363ad95456c88363a9c3da (diff)
downloadrust-92f1e9f1ab347087f4005c2e2fa5a2d805e1d888.tar.gz
rust-92f1e9f1ab347087f4005c2e2fa5a2d805e1d888.zip
Ignore some should_fail tests on win32
Diffstat (limited to 'src/test/stdtest')
-rw-r--r--src/test/stdtest/c_vec.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/stdtest/c_vec.rs b/src/test/stdtest/c_vec.rs
index 2af2398662c..8ac81274fc7 100644
--- a/src/test/stdtest/c_vec.rs
+++ b/src/test/stdtest/c_vec.rs
@@ -31,6 +31,7 @@ fn test_basic() {
 
 #[test]
 #[should_fail]
+#[ignore(cfg(target_os = "win32"))]
 fn test_overrun_get() {
     let cv = malloc(16u);
 
@@ -39,6 +40,7 @@ fn test_overrun_get() {
 
 #[test]
 #[should_fail]
+#[ignore(cfg(target_os = "win32"))]
 fn test_overrun_set() {
     let cv = malloc(16u);