diff options
-rw-r--r-- | texttest.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/texttest.php b/texttest.php index 9a01aa4..2aed0dd 100644 --- a/texttest.php +++ b/texttest.php @@ -36,6 +36,14 @@ function microtime_float() return ((float)$usec + (float)$sec); } +// Drop $argv[0] (command name) +array_shift($argv); + +$t = array_search('thorough', $argv); +if ($t !== FALSE && $t !== NULL) { + define('Tests_Net_OpenID_DH_thorough', TRUE); +} + $suites = loadSuite(); $totals = array( |