--TEST-- Test V8::executeString() : Issue #306 V8 crashing on toLocaleString() --SKIPIF-- --FILE-- executeString($expr); // V8 can be compiled with i18n support and without; // without i18n support however toLocaleString doesn't really work, // it just returns the date string... if ($result === 'October') { var_dump(true); } else { $expr = 'new Date("10/11/2009").toString();'; var_dump($v8->executeString($expr) === $result); } ?> ===EOF=== --EXPECT-- bool(true) ===EOF===