commit | e51da9c3a8b448bc06110f1a7376211dcd32cc0e | [log] [tgz] |
---|---|---|
author | Gael Guennebaud <g.gael@free.fr> | Mon Aug 04 12:46:00 2014 +0200 |
committer | Gael Guennebaud <g.gael@free.fr> | Mon Aug 04 12:46:00 2014 +0200 |
tree | c0dfa54fa170b0f54e88b796b8544ccf0c281563 | |
parent | 3e59163a24c5ff1a8009887cb5d5e091ae6df540 [diff] [blame] |
Memory allocated on the stack is freed at the function exit, so reduce iteration count to avoid stack overflow
diff --git a/test/dynalloc.cpp b/test/dynalloc.cpp index 4f53ea6..1190eb9 100644 --- a/test/dynalloc.cpp +++ b/test/dynalloc.cpp
@@ -55,7 +55,7 @@ void check_aligned_stack_alloc() { - for(int i = 1; i < 1000; i++) + for(int i = 1; i < 400; i++) { ei_declare_aligned_stack_constructed_variable(float,p,i,0); VERIFY(size_t(p)%ALIGNMENT==0);