From 0143f4e3643bf496abda878b286db949d933e915 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 16 Nov 2018 22:03:51 -0800 Subject: [PATCH] disable unimportant RAM-heavy test b/c Windows (#5047) --- tests/rust_usage_test/tests/integration_test.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/rust_usage_test/tests/integration_test.rs b/tests/rust_usage_test/tests/integration_test.rs index 39fe6eded..3fd217707 100644 --- a/tests/rust_usage_test/tests/integration_test.rs +++ b/tests/rust_usage_test/tests/integration_test.rs @@ -199,10 +199,11 @@ fn serialized_example_is_accessible_and_correct(bytes: &[u8], identifier_require Ok(()) } -#[test] -fn builder_initializes_with_maximum_buffer_size() { - flatbuffers::FlatBufferBuilder::new_with_capacity(flatbuffers::FLATBUFFERS_MAX_BUFFER_SIZE); -} +// Disabled due to Windows CI limitations. +// #[test] +// fn builder_initializes_with_maximum_buffer_size() { +// flatbuffers::FlatBufferBuilder::new_with_capacity(flatbuffers::FLATBUFFERS_MAX_BUFFER_SIZE); +// } #[should_panic] #[test]