[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua tests fails
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 2 Jul 2012 13:31:04 -0300
> I'm downloaded lua 5.2.1 sources and build it in visual studio 2010.
> Then I'm download lua 5.2.1 tests, and run just built release version of
> lua interpreter on them.
> And I get error "not enough memory".
> What doing wrong?
>
> [...]
>
> C:\Users\cNoNim\Documents\lua\tests>..\bin\Release\luai.exe -v
> Lua 5.2.1 Copyright (C) 1994-2012 Lua.org, PUC-Rio
>
> C:\Users\cNoNim\Documents\lua\tests>..\bin\Release\luai.exe -e"_U=true"
> all.lua
> [...]
That was a stupid bug in the test suite. (With option -e"_U=true", one
script stopped the garbage collector and never restarted it.) The test
distribution has been corrected now.
-- Roberto