These tests were failing on HHVM because of the default 3 second timeout.
Yes, HHVM is supposed to be faster, but there's a "warmup" time for scripts
in JIT mode (which is on by default). I suspect that's why they're failing.
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
These tests were failing on HHVM because of the default 3 second timeout.
Yes, HHVM is supposed to be faster, but there's a "warmup" time for scripts
in JIT mode (which is on by default). I suspect that's why they're failing.
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 607cb3b0b3
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 659efe1a88
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 840f7b1215
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 1d58392622
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests parallelly. Currently some tests
fail because not all the dependencies are properly included.
This is similar to this commit 840f7b1215
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
As per discussion in mailing list, another object is used to check for file permission while global object remains same!
Signed-off-by: A V Minhaz <minhazav@gmail.com>
The constant used to load config file i.e CONFIG_FILE was config.inc.php while it did not exist in code base, which was causing two similar test-case with no config-file.
CONFIG_FILE has been replaced with "config.sample.inc.php" which can be tested for.
Signed-off-by: A V Minhaz <minhazav@gmail.com>
The original custom sort function is not stable, which causes
different results on HHVM. It now uses the default array_diff
function which is stable. Also updated an incorrect test.
Signed-off-by: Jeff Chan <jefftchan@gmail.com>