Fixed the String test (fixes #117)

This commit is contained in:
Shoghi Cervantes Pueyo 2013-02-26 19:20:35 +01:00
parent 0852c42de7
commit 28bfdbb3c5
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ class ServerAPI{
$test .= Utils::writeLong("-1152921504606846977"); $test .= Utils::writeLong("-1152921504606846977");
$test .= Utils::writeLong("-1152921504606846976"); $test .= Utils::writeLong("-1152921504606846976");
$str = new Java_String("TESTING\x00\n\r\t\xff"); $str = new Java_String("TESTING\x00\n\r\t\xff");
$test .= Utils::writeLong($str->hashCode()); $test .= Utils::writeInt($str->hashCode());
$test .= Utils::writeDataArray(array("a", "b", "c", "\xff\xff\xff\xff")); $test .= Utils::writeDataArray(array("a", "b", "c", "\xff\xff\xff\xff"));
$test .= Utils::hexToStr("012334567890"); $test .= Utils::hexToStr("012334567890");
file_put_contents(FILE_PATH."logs/test.bin.log", $test); file_put_contents(FILE_PATH."logs/test.bin.log", $test);

View File

@ -37,7 +37,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . FILE_PATH);
ini_set("memory_limit", "256M"); ini_set("memory_limit", "256M");
define("LOG", true); define("LOG", true);
define("MAGIC", "\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78"); define("MAGIC", "\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78");
define("TEST_MD5", "2c25fb29459162c2a865b370ef0cdfcf"); define("TEST_MD5", "ffe889db5932db1e3371d48773590e59");
define("MAJOR_VERSION", "Alpha_1.2dev"); define("MAJOR_VERSION", "Alpha_1.2dev");
define("CURRENT_STRUCTURE", 5); define("CURRENT_STRUCTURE", 5);
define("CURRENT_PROTOCOL", 9); define("CURRENT_PROTOCOL", 9);