Package: symfony / 2.3.21+dfsg-4
Metadata
Package | Version | Patches format |
---|---|---|
symfony | 2.3.21+dfsg-4 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
0001 Add a vendor autoload.php needed to run tests during.patch | (download) |
vendor/autoload.php |
9 9 + 0 - 0 ! |
add a vendor/autoload.php needed to run tests during package build |
0002 group online for test failing without network.patch | (download) |
src/Symfony/Component/Filesystem/Tests/FilesystemTest.php |
3 3 + 0 - 0 ! |
'@group online' for test failing without network |
0003 Remove content from README.md files.patch | (download) |
src/Symfony/Bridge/Doctrine/README.md |
14 0 + 14 - 0 ! |
remove content from readme.md files |
0004 Add more tests to group tty.patch | (download) |
src/Symfony/Component/Process/Tests/AbstractProcessTest.php |
9 9 + 0 - 0 ! |
add more tests to '@group tty' Not all tests using a tty are in @group tty. This should be reported (and fixed) upstream but needs further investigation: - There might be more tests needing a tty. - It could be that some tests in group tty may not need a tty. |
0005 Process Make test AbstractProcessTest testStartAfter.patch | (download) |
src/Symfony/Component/Process/Tests/AbstractProcessTest.php |
6 3 + 3 - 0 ! |
[process] make test abstractprocesstest::teststartafteratimeout useful again The test AbstractProcessTest::testStartAfterATimeout() is pretty useless, due to two reasons: 1. Any exception is caught This means even the exception thrown with $this->fail('A RuntimeException should have been raised.'); is caught, making the test pretty useless. 2. Invalid PHP code gets executed The command that is executed in the tests actually is: # php -r "$n = 1000; while ($n--) {echo ''; usleep(1000); }" This does not wait ~1s, but produces the following error: PHP Parse error: syntax error, unexpected '=' in Command line code on line 1 |
0006 Increasing timeout in test AbstractProcessTest testS.patch | (download) |
src/Symfony/Component/Process/Tests/AbstractProcessTest.php |
2 1 + 1 - 0 ! |
increasing timeout in test AbstractProcessTest::testStartAfterATimeout() This hopefully will allow ci.debian.net to run DEP-8 as installed tests and might prevent FTBFS #775625 from hitting us again. |
0007 isFromTrustedProxy to confirm request came from a tr.patch | (download) |
src/Symfony/Component/HttpFoundation/Request.php |
13 9 + 4 - 0 ! |
isfromtrustedproxy to confirm request came from a trusted proxy. |
0008 Safe escaping of fragments for eval.patch | (download) |
src/Symfony/Component/HttpKernel/HttpCache/Esi.php |
62 31 + 31 - 0 ! |
safe escaping of fragments for eval() https://github.com/symfony/symfony/commit/195c57e1f50765aff33137689b16e126a689056a |