switch tests to CDRMonitor

Explicit call to epicsExitCallAtExits is needed to
preserve previous order between AtExit cleanup list
and static class destructors.

update llist gold
This commit is contained in:
Michael Davidsaver
2011-01-30 19:37:12 -05:00
parent 4a65bf9342
commit 103e4bf2cb
13 changed files with 39 additions and 13 deletions

View File

@@ -13,6 +13,7 @@
#include <cstdio>
#include <epicsAssert.h>
#include <epicsExit.h>
#include "requester.h"
#include "pvIntrospect.h"
@@ -243,7 +244,8 @@ int main(int argc,char *argv[])
testDisplay(fd,auxfd);
testEnumerated(fd,auxfd);
deleteRecords(fd,auxfd);
getShowConstructDestruct()->showDeleteStaticExit(fd);
epicsExitCallAtExits();
CDRMonitor::get().show(fd);
return(0);
}