ENH: add a dynamic loader flush cache

This commit is contained in:
Bill Hoffman 2004-01-27 17:12:41 -05:00
parent 3540324598
commit 9be1b582ee
1 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,7 @@
#include <time.h> #include <time.h>
#include <math.h> #include <math.h>
#include <float.h> #include <float.h>
#include "cmDynamicLoader.h"
#define SAFEDIV(x,y) (((y)!=0)?((x)/(y)):(0)) #define SAFEDIV(x,y) (((y)!=0)?((x)/(y)):(0))
@ -3932,6 +3933,9 @@ int cmCTest::Run(std::vector<std::string>const& args, std::string* output)
int retv = this->RunCMakeAndTest(output); int retv = this->RunCMakeAndTest(output);
cmSystemTools::ResetErrorOccuredFlag(); cmSystemTools::ResetErrorOccuredFlag();
cmListFileCache::GetInstance()->ClearCache(); cmListFileCache::GetInstance()->ClearCache();
#ifdef CMAKE_BUILD_WITH_CMAKE
cmDynamicLoader::FlushCache();
#endif
return retv; return retv;
} }