summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-13 03:44:35 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-13 03:44:35 +0000
commita4605261f54720b1df6712610e2f5e845777ad4d (patch)
tree3291086b11e7311fa5824efb12c2e31292de903b
parent4eb4b59c77a54ab904e6985eadec232593ebb8e2 (diff)
downloadATCD-a4605261f54720b1df6712610e2f5e845777ad4d.tar.gz
ChangeLogTag:Mon Nov 12 21:28:01 2001 Nanbor Wang <nanbor@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a7
-rwxr-xr-xTAO/performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl15
2 files changed, 15 insertions, 7 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index a24a5699365..e66d65a7226 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Mon Nov 12 21:28:01 2001 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl
+ (run_test_helper): Disabled running the test with SHMIOP
+ protocol on Win32 platform as it is carshing the OS on single
+ CPU machines.
+
Mon Nov 12 20:26:35 2001 Krishnakumar B <kitty@cs.wustl.edu>
* TAO_IDL/Makefile:
diff --git a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl
index a29ad457d6c..c5dc29165cf 100755
--- a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl
+++ b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl
@@ -114,18 +114,19 @@ if ($OSNAME ne "MSWin32") {
$CL->Arguments ($clflags . $clnsflags . $quietflag . " -x ");
run_test_helper ();
-}
-print STDERR "============================================================\n";
-print STDERR "Running IDL_Cubit with the SHMIOP protocol.\n\n";
+ print STDERR "============================================================\n";
+ print STDERR "Running IDL_Cubit with the SHMIOP protocol.\n\n";
-$SV->Arguments ($svflags . $svnsflags
- . " -ORBEndpoint shmiop:// -ORBSvcconf $server_shmiop_conf ");
-$CL->Arguments ($clflags . $clnsflags . $quietflag . " -x ");
+ $SV->Arguments ($svflags . $svnsflags
+ . " -ORBEndpoint shmiop:// -ORBSvcconf $server_shmiop_conf ");
+ $CL->Arguments ($clflags . $clnsflags . $quietflag . " -x ");
-run_test_helper ();
+ run_test_helper ();
# Clean up SHMIOP files
PerlACE::check_n_cleanup_files ("server_shmiop_*");
+}
+
exit $status;