summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-04-10 06:38:37 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-04-10 06:38:37 +0000
commitaa77ab9dc22ec73f7ea34e005e347ece04e8816c (patch)
treed233dee90bb8bc48973f36002e50784a12948373 /CIAO/tests/IDL3
parent5efdb9c8d2daead6ce3c51d76f5cb226fd149ad6 (diff)
downloadATCD-aa77ab9dc22ec73f7ea34e005e347ece04e8816c.tar.gz
Diffstat (limited to 'CIAO/tests/IDL3')
-rwxr-xr-xCIAO/tests/IDL3/Connectors/run_test.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/CIAO/tests/IDL3/Connectors/run_test.pl b/CIAO/tests/IDL3/Connectors/run_test.pl
index 41afbb0c113..9facf8c0db1 100755
--- a/CIAO/tests/IDL3/Connectors/run_test.pl
+++ b/CIAO/tests/IDL3/Connectors/run_test.pl
@@ -50,18 +50,18 @@ $server_status3 = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());
open (STDOUT, ">&OLDOUT");
open (STDERR, ">&OLDERR");
-if ($server_status1 != 1) {
- print STDERR "ERROR: tao returned $server_status1 for $input_file1, should have failed\n";
+if ($server_status1 == 0) {
+ print STDERR "ERROR: tao_idl returned $server_status1 for $input_file1, should have failed\n";
$status = 1;
}
-if ($server_status2 != 1) {
- print STDERR "ERROR: tao returned $server_status2 for $input_file2, should have failed\n";
+if ($server_status2 == 0) {
+ print STDERR "ERROR: tao_idl returned $server_status2 for $input_file2, should have failed\n";
$status = 1;
}
-if ($server_status3 != 1) {
- print STDERR "ERROR: tao returned $server_status3 for $input_file3, should have failed\n";
+if ($server_status3 == 0) {
+ print STDERR "ERROR: tao_idl returned $server_status3 for $input_file3, should have failed\n";
$status = 1;
}