7 require_once __DIR__ .
'/../LuaCommon/LuaInterpreterTest.php';
16 'memoryLimit' => 50000000,
28 $chunk = $interpreter->loadString(
's = string.rep("x", 1000000)',
'mem' );
29 $interpreter->callFunction( $chunk );
30 $mem = $interpreter->getPeakMemoryUsage();
31 $this->assertGreaterThan( 1000000, $mem,
'memory usage' );
32 $this->assertLessThan( 10000000, $mem,
'memory usage' );