提交 2d27ad19 编写于 作者: B Brian Anderson

Stop allocating so much in arena tests

Android bots are OOMing.
上级 b85fe01b
......@@ -504,7 +504,7 @@ struct Point {
#[test]
pub fn test_pod() {
let arena = TypedArena::new();
for _ in range(0, 1000000) {
for _ in range(0, 100000) {
arena.alloc(Point {
x: 1,
y: 2,
......@@ -558,7 +558,7 @@ struct Nonpod {
#[test]
pub fn test_nonpod() {
let arena = TypedArena::new();
for _ in range(0, 1000000) {
for _ in range(0, 100000) {
arena.alloc(Nonpod {
string: ~"hello world",
array: ~[ 1, 2, 3, 4, 5 ],
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册