Browse Source

Add %S and %A to EXPECTF, they work like %s and %a but match empty strings, too

PHP-5.2.1RC1
Johannes Schlüter 18 years ago
parent
commit
0e306ec3bc
  1. 2
      run-tests.php

2
run-tests.php

@ -1551,7 +1551,9 @@ COMMAND $cmd
// Stick to basics
$wanted_re = str_replace('%e', '\\' . DIRECTORY_SEPARATOR, $wanted_re);
$wanted_re = str_replace('%s', '[^\r\n]+', $wanted_re);
$wanted_re = str_replace('%S', '[^\r\n]*', $wanted_re);
$wanted_re = str_replace('%a', '.+', $wanted_re);
$wanted_re = str_replace('%A', '.*', $wanted_re);
$wanted_re = str_replace('%w', '\s*', $wanted_re);
$wanted_re = str_replace('%i', '[+-]?\d+', $wanted_re);
$wanted_re = str_replace('%d', '\d+', $wanted_re);

Loading…
Cancel
Save