summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Benchmark/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Smart_Proxies/Benchmark/run_test.pl')
-rwxr-xr-xTAO/tests/Smart_Proxies/Benchmark/run_test.pl49
1 files changed, 49 insertions, 0 deletions
diff --git a/TAO/tests/Smart_Proxies/Benchmark/run_test.pl b/TAO/tests/Smart_Proxies/Benchmark/run_test.pl
new file mode 100755
index 00000000000..b6e9fff38d0
--- /dev/null
+++ b/TAO/tests/Smart_Proxies/Benchmark/run_test.pl
@@ -0,0 +1,49 @@
+eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
+ & eval 'exec perl -S $0 $argv:q'
+ if 0;
+
+# $Id$
+# -*- perl -*-
+
+unshift @INC, '../../../bin';
+require ACEutils;
+use Cwd;
+
+$cwd = getcwd();
+$iorfile = "$cwd$DIR_SEPARATOR" . "test.ior";
+
+ACE::checkForTarget($cwd);
+
+unlink $iorfile;
+
+print STDERR "\nrunning Smart Proxy test consisting of the client and the server\n\n";
+
+$SV = Process::Create ($EXEPREFIX."server".$EXE_EXT,
+ " -o $iorfile");
+
+if (ACE::waitforfile_timed ($iorfile, 5) == -1) {
+ print STDERR "ERROR: cannot find file <$iorfile>\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+}
+
+$CL = Process::Create ($EXEPREFIX."client$EXE_EXT",
+ "-i file://$iorfile");
+
+$client = $CL->TimedWait (60);
+if ($client == -1) {
+ print STDERR "ERROR: client timedout\n";
+ $CL->Kill (); $CL->TimedWait (1);
+}
+
+$server = $SV->TimedWait (10);
+if ($server == -1) {
+ print STDERR "ERROR: server timedout\n";
+ $SV->Kill (); $SV->TimedWait (1);
+}
+
+unlink $iorfile;
+
+if ($client != 0 || server != 0) {
+ exit 1;
+}