summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorharrisb <harrisb@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-01-28 20:11:16 +0000
committerharrisb <harrisb@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-01-28 20:11:16 +0000
commite4bb0ff296cefcce625dbe6a5441f1a4d98097b4 (patch)
tree0173cc1dec80775bcd1018b8601048d295ff8334
parent8bf800a5aa61ff40ad94d4a0cc449d2824558840 (diff)
downloadATCD-e4bb0ff296cefcce625dbe6a5441f1a4d98097b4.tar.gz
Mon Jan 28 20:09:12 UTC 2013 Byron Harris <harrisb@ociweb.com>
-rw-r--r--TAO/OCI_RE_ChangeLog8
-rwxr-xr-xTAO/orbsvcs/tests/FT_Naming/FaultTolerant/run_persistence_test.pl22
2 files changed, 25 insertions, 5 deletions
diff --git a/TAO/OCI_RE_ChangeLog b/TAO/OCI_RE_ChangeLog
index 551c7c05db4..a94585e01e0 100644
--- a/TAO/OCI_RE_ChangeLog
+++ b/TAO/OCI_RE_ChangeLog
@@ -1,3 +1,11 @@
+Mon Jan 28 20:09:12 UTC 2013 Byron Harris <harrisb@ociweb.com>
+
+ * orbsvcs/tests/FT_Naming/FaultTolerant/run_persistence_test.pl:
+
+ Redirect output wih expected error messages encountered
+ reading corrupt files so that these messages will not
+ indicated test failure.
+
Mon Jan 28 16:09:03 UTC 2013 "Kevin Stanley" <stanleyk@ociweb.com>
* docs/Options.html:
diff --git a/TAO/orbsvcs/tests/FT_Naming/FaultTolerant/run_persistence_test.pl b/TAO/orbsvcs/tests/FT_Naming/FaultTolerant/run_persistence_test.pl
index 86bdf56a3d8..c71653cfec1 100755
--- a/TAO/orbsvcs/tests/FT_Naming/FaultTolerant/run_persistence_test.pl
+++ b/TAO/orbsvcs/tests/FT_Naming/FaultTolerant/run_persistence_test.pl
@@ -527,7 +527,7 @@ sub backup_restore_test ()
$status = 1;
}
- ##4. Verify that backup files are created
+ ##5. Verify that backup files are created
print_msg("Verifying naming context backup files");
$file = $name_dir . "/NameService";
@@ -553,7 +553,7 @@ sub backup_restore_test ()
}
}
- ##. Replace some of the data files with corrupt files
+ ##6. Replace some of the data files with corrupt files
print_msg("Replace data files with corrupt files");
my $corrupt_data_dir = $startdir . "/corrupt_data/";
@@ -573,24 +573,36 @@ sub backup_restore_test ()
copy ($corrupt_group_dir . $file, $group_dir . "/" . $file) or die "Copy failed: $!\n";
}
- ##5. Start a new instance of the tao_ft_naming server
- print_msg("Start a new instance of the tao_ft_naming server");
+ ##7. Start a new instance of the tao_ft_naming server
+ print_msg("Start a new instance of the tao_ft_naming server and then running client 2");
$server->DeleteFile ($ns_iorfile);
+ # Redirect output so that expected error messages are not interpreted as
+ # test failure and rely instead of return status.
+ redirect_output();
+ my $restore_status = 0;
$NS1->Spawn ();
if ($server->WaitForFileTimed ($ns_iorfile,
$server->ProcessStartWaitInterval()) == -1) {
print STDERR "ERROR: cannot find file <$ns_iorfile>\n";
$NS1->Kill (); $NS1->TimedWait (1);
$status = 1;
+ $restorestatus = 1;
}
- ##6. Verify the new name, object group and member are in the tao_ft_naming repository.
+ ##8. Verify the new name, object group and member are in the tao_ft_naming repository.
print_msg("Verify the backup files are used when the corrupt files are read");
print_msg("INFO: Starting client2");
$client_status = $CL2->SpawnWaitKill ($client->ProcessStartWaitInterval());
+ restore_output();
if ($client_status != 0) {
print STDERR "ERROR: client2 returned $client_status\n";
$status = 1;
+ $restorestatus = 1;
+ }
+
+ if ($restore_status == 1) {
+ cat_file($client_stderr_file);
+ cat_file($client_stdout_file);
}
print_msg("INFO: terminating test server");