summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/no_jit_bug70110.phpt
Commit message (Collapse)AuthorAgeFilesLines
* Clean DONE tags from testsFabien Villepinte2019-11-071-2/+0
| | | | | | | Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
* Use EXPECT instead of EXPECTF when possibleGabriel Caruso2018-02-201-1/+1
| | | | EXPECTF logic in run-tests.php is considerable, so let's avoid it.
* Fix (*NO_JIT) usage when JIT is enabledAnatol Belski2017-11-161-0/+16
If (*NO_JIT) is put into the pattern, the JIT compilation will still succeed but produce no code. The pattern will still have to be interpreted and is not suitable for the JIT fast path. This means, we still need to check the pattern info after JIT compilation and only set the flags when the JIT code was produced.