Files
pvData/test/testPVAuxInfo.pl
Marty Kraimer 8f082c5ea6 fix EPICS_HOST_ARCH=linux-x86 problem in pvDataCPP/test
add auxFd in testLinkedList.cpp so that test dopes not show extra info
2010-11-10 06:37:18 -05:00

13 lines
423 B
Perl
Executable File

eval 'exec perl -S $0 ${1+"$@"}' # -*- Mode: perl -*-
if $running_under_some_shell; # testPVAuxInfo.pl
use Env;
system ("rm testPVAuxInfo");
system ("rm testPVAuxInfoDiff");
system ("../bin/${EPICS_HOST_ARCH}/testPVAuxInfo testPVAuxInfo");
system ("diff testPVAuxInfo testPVAuxInfoGold >> testPVAuxInfoDiff");
if(-z "testPVAuxInfoDiff") {
print "testPVAuxInfo OK\n";
} else {
print "testPVAuxInfo Failed\n";
}