IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 1, 2012, 3:03:26 PM (14 years ago)
Author:
eugene
Message:

add tests for PS1_V3; add tests for flat-field correction & ubercal; add tests for parallel dvo; fix up WISE ingest; fix up superCOSMOS ingest; improvements to mkcmf for more detailed testing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/addstar/test/tap.dvo

    r27435 r33653  
    11# -*-sh-*-
     2
     3if (not($?TAP_BREAK)) set TAP_BREAK = 0
    24
    35macro tapOK
     
    2931  $TAP_NTEST = $1
    3032  $TAP_NFAIL = 0
     33  $TAP_NSKIP = 0
    3134  $TAP_NDONE = 0
    3235  if (not($?TAP_BREAK)) set TAP_BREAK = 0
     36end
     37
     38macro tapSKIP
     39  if ($0 != 2)
     40    echo "USAGE: tapSKIP (nskip)"
     41    break
     42  end
     43
     44  $TAP_NSKIP ++
     45  $TAP_NDONE ++
    3346end
    3447
     
    4760  end
    4861
    49   if ($TAP_NFAIL == 0)
     62  if ($TAP_NSKIP)
     63    echo "skipped $TAP_NSKIP of $TAP_NDONE"
     64  end
     65
     66  if ($TAP_NFAIL + $TAP_NSKIP == 0)
    5067    echo "passed $TAP_NDONE tests"
    5168  end
Note: See TracChangeset for help on using the changeset viewer.