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

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