summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/IDL_Test/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/ami4ccm/tests/IDL_Test/run_test.pl')
-rwxr-xr-xCIAO/connectors/ami4ccm/tests/IDL_Test/run_test.pl25
1 files changed, 0 insertions, 25 deletions
diff --git a/CIAO/connectors/ami4ccm/tests/IDL_Test/run_test.pl b/CIAO/connectors/ami4ccm/tests/IDL_Test/run_test.pl
deleted file mode 100755
index 4d5ccc46d8f..00000000000
--- a/CIAO/connectors/ami4ccm/tests/IDL_Test/run_test.pl
+++ /dev/null
@@ -1,25 +0,0 @@
-
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
- & eval 'exec perl -S $0 $argv:q'
- if 0;
-
-# -*- perl -*-
-
-$found = 0 ;
-open (I_FILE, "Hello_Component_exec.cpp") ;
-while( <I_FILE> ){
- chomp ;
- if( $_ =~ /sendc/ ){
- $found = 1 ;
- last ;
- }
-}
-
-if( $found == 1 ){
- print STDERR "ERROR: Found sendc in generated code\n";
- $status = 1 ;
-} else {
- print STDERR "Generated code ok\n";
-}
-
-exit $status;