13 lines
390 B
Perl
Executable File
13 lines
390 B
Perl
Executable File
eval 'exec perl -S $0 ${1+"$@"}' # -*- Mode: perl -*-
|
|
if $running_under_some_shell; # testPVType.pl
|
|
use Env;
|
|
system ("rm testPVType");
|
|
system ("rm testPVTypeDiff");
|
|
system ("../bin/${EPICS_HOST_ARCH}/testPVType testPVType");
|
|
system ("diff testPVType testPVTypeGold >> testPVTypeDiff");
|
|
if(-z "testPVTypeDiff") {
|
|
print "testPVType OK\n";
|
|
} else {
|
|
print "testPVType Failed\n";
|
|
}
|