summaryrefslogtreecommitdiffstats
path: root/application/third_party/test-more-php/t/testertests_exit_fail_260.php
blob: 7737ba0aee93393002bf880afa2a18f7ee323009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

    $lib = isset($_SERVER['TESTLIB']) ? $_SERVER['TESTLIB'] : 'Test-Simple.php';
    require_once($lib);

    plan(262);
    $failures = 260;

    ok(1);
    for ($x=1;$x<$failures;$x++){
        ok(0);
    }
    ok(1);
?>