- Timestamp:
- Jun 19, 2012, 5:24:19 PM (14 years ago)
- Location:
- branches/meh_branches/ppstack_test
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
Ohana/src/addstar/test (modified) (1 prop)
-
Ohana/src/addstar/test/tap.dvo (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/meh_branches/ppstack_test
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/Ohana/src/addstar/test
- Property svn:ignore
-
old new 16 16 relphot.Mag.png 17 17 relphot.Mcal.dMcal.png 18 catdir.wise.test
-
- Property svn:ignore
-
branches/meh_branches/ppstack_test/Ohana/src/addstar/test/tap.dvo
r27435 r34041 1 1 # -*-sh-*- 2 3 if (not($?TAP_BREAK)) set TAP_BREAK = 0 2 4 3 5 macro tapOK … … 29 31 $TAP_NTEST = $1 30 32 $TAP_NFAIL = 0 33 $TAP_NSKIP = 0 31 34 $TAP_NDONE = 0 32 35 if (not($?TAP_BREAK)) set TAP_BREAK = 0 36 end 37 38 macro tapSKIP 39 if ($0 != 2) 40 echo "USAGE: tapSKIP (nskip)" 41 break 42 end 43 44 $TAP_NSKIP ++ 45 $TAP_NDONE ++ 33 46 end 34 47 … … 47 60 end 48 61 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) 50 67 echo "passed $TAP_NDONE tests" 51 68 end
Note:
See TracChangeset
for help on using the changeset viewer.
