summaryrefslogtreecommitdiff
path: root/utils/open-isns/tests/test01.pl
diff options
context:
space:
mode:
Diffstat (limited to 'utils/open-isns/tests/test01.pl')
-rw-r--r--utils/open-isns/tests/test01.pl30
1 files changed, 0 insertions, 30 deletions
diff --git a/utils/open-isns/tests/test01.pl b/utils/open-isns/tests/test01.pl
deleted file mode 100644
index 258acff..0000000
--- a/utils/open-isns/tests/test01.pl
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/perl
-#
-# Copyright (C) 2007 Olaf Kirch <olaf.kirch@oracle.com>
-#
-# This test case validates registration and simple query of
-# single client.
-
-push(@INC, ".");
-require "harness.pl";
-
-&test_prep("test01", @ARGV);
-
-$server = &create_server;
-$client = &create_client($server);
-
-&isns_start_server($server);
-
-# 1: Enroll the test client
-&isns_enroll_client($client);
-
-# 2: Register an initiator with default portal
-&isns_register_client($client, "initiator portal");
-
-# 3: Run a simple query
-&isns_query_objects($client, "eid");
-
-# 99: Unregister client
-&isns_unregister_client("99-unregistration", $client);
-
-&isns_finish;