Adding Bib-1 test case.
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Ping.pm
index af61b3c..f81aaaf 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Ping.pm,v 1.6 2006-07-18 10:40:13 mike Exp $
+# $Id: Ping.pm,v 1.11 2006-09-13 16:29:55 mike Exp $
 
 # See the "Main" test package for documentation
 
@@ -32,11 +32,12 @@ sub not_connected { maybe_connected(@_, 0) }
 sub maybe_connected {
     my($conn, $irspy, $rs, $event, $ok) = @_;
 
-    my $rec = $irspy->record($conn);
     $irspy->log("irspy_test", $conn->option("host"),
                ($ok ? "" : " not"), " connected");
-    $rec->failed(1) if !$ok;
-    ### At this point we should note the successful connection in $rec
+    my $rec = $irspy->record($conn);
+    $rec->append_entry("irspy:status", "<irspy:probe ok='$ok'>" .
+                      $irspy->isodate(time()) . "</irspy:probe>");
+    $conn->option(pod_omit => 1) if !$ok;
     return 0;
 }