aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/perl/test/SingleTest.pl
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-08 11:19:34 +0000
committerJustin Clarke Casey2008-04-08 11:19:34 +0000
commit0c601b73125d1bc120e248149bf4d83ecc27f1c2 (patch)
tree6c12f957e3cedda58a725b25e43b9595124bfb54 /share/perl/test/SingleTest.pl
parent* Added stretchable ellipsoid support with configurable LOD. It's actually a... (diff)
downloadopensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.zip
opensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.tar.gz
opensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.tar.bz2
opensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.tar.xz
* Removing lulurun's perl UGAI from core svn, pending a link to an external repository, as per mailing list discussion.
Diffstat (limited to 'share/perl/test/SingleTest.pl')
-rwxr-xr-xshare/perl/test/SingleTest.pl21
1 files changed, 0 insertions, 21 deletions
diff --git a/share/perl/test/SingleTest.pl b/share/perl/test/SingleTest.pl
deleted file mode 100755
index e6be081..0000000
--- a/share/perl/test/SingleTest.pl
+++ /dev/null
@@ -1,21 +0,0 @@
1#!/usr/bin/perl
2
3# usage:
4# ./SingleTest.pl $URL $METHOD @PARAMETERS
5# example
6# ./SingleTest.pl http://127.0.0.1/user.cgi get_user_by_name "Test User"
7# ./SingleTest.pl http://127.0.0.1/grid.cgi simulator_login 3507f395-88e5-468c-a45f-d4fd96a1c668 10.8.1.148 9000
8# ./SingleTest.pl http://127.0.0.1/grid.cgi map_block 999 999 1001 1001
9# ./SingleTest.pl http://127.0.0.1/asset.cgi get_asset 00000000000022223333000000000001
10#
11
12use strict;
13use Data::Dump;
14use OpenSimTest;
15
16&OpenSimTest::init();
17my $url = shift @ARGV;
18#my $url = "http://localhost:8002";
19my $result = &OpenSimTest::SingleTest($url, @ARGV);
20Data::Dump::dump($result);
21