Index: /branches/eam_branches/ipp-20111122/Ohana/src/addstar/test/tap.dvo
===================================================================
--- /branches/eam_branches/ipp-20111122/Ohana/src/addstar/test/tap.dvo	(revision 33279)
+++ /branches/eam_branches/ipp-20111122/Ohana/src/addstar/test/tap.dvo	(revision 33280)
@@ -31,6 +31,17 @@
   $TAP_NTEST = $1
   $TAP_NFAIL = 0
+  $TAP_NSKIP = 0
   $TAP_NDONE = 0
   if (not($?TAP_BREAK)) set TAP_BREAK = 0
+end
+
+macro tapSKIP
+  if ($0 != 2) 
+    echo "USAGE: tapSKIP (nskip)"
+    break
+  end
+
+  $TAP_NSKIP ++
+  $TAP_NDONE ++
 end
 
@@ -49,5 +60,9 @@
   end
 
-  if ($TAP_NFAIL == 0) 
+  if ($TAP_NSKIP) 
+    echo "skipped $TAP_NSKIP of $TAP_NDONE"
+  end
+
+  if ($TAP_NFAIL + $TAP_NSKIP == 0) 
     echo "passed $TAP_NDONE tests"
   end
