8000 bug #21923 [travis] Test with hhvm 3.18 (nicolas-grekas) · symfony/symfony@a0945fc · GitHub
[go: up one dir, main page]

Skip to content

Commit a0945fc

Browse files
committed
bug #21923 [travis] Test with hhvm 3.18 (nicolas-grekas)
This PR was merged into the 2.7 branch. Discussion ---------- [travis] Test with hhvm 3.18 | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #21900 | License | MIT | Doc PR | - Needs #21922 on master to be green also. Works around facebook/hhvm#7722. Commits ------- 7f1f0cb [travis] Test with hhvm 3.18
2 parents 68f8109 + 7f1f0cb commit a0945fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
matrix:
1919
include:
2020
# Use the newer stack for HHVM as HHVM does not support Precise anymore since a long time and so Precise has an outdated version
21-
- php: hhvm-3.15
21+
- php: hhvm-3.18
2222
sudo: required
2323
dist: trusty
2424
group: edge

src/Symfony/Bundle/SecurityBundle/Tests/Functional/WebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static function assertRedirect($response, $location)
2525

2626
protected static function deleteTmpDir($testCase)
2727
{
28-
if (!file_exists($dir = sys_get_temp_dir().'/'.Kernel::VERSION.'/'.$testCase)) {
28+
if (defined('HHVM_VERSION_ID') || !file_exists($dir = sys_get_temp_dir().'/'.Kernel::VERSION.'/'.$testCase)) {
2929
return;
3030
}
3131

0 commit comments

Comments
 (0)
0