Files
pvData/test/testPVData.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
390 B
Perl
Executable File

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