introspectionRegistry: enabled caching of non scalar/scalarArrays

This commit is contained in:
Matej Sekoranja
2013-12-05 13:07:10 +01:00
parent cb561b84b3
commit f6d4c68c39
3 changed files with 72 additions and 2 deletions
+7
View File
@@ -21,6 +21,7 @@
#include "channelAccessIFTest.h"
//#define ENABLE_STRESS_TESTS
using namespace std::tr1;
@@ -41,7 +42,11 @@ std::string ChannelAccessIFTest::TEST_ARRAY_CHANNEL_NAME = "testArray1";
int ChannelAccessIFTest::runAllTest() {
#ifdef ENABLE_STRESS_TESTS
testPlan(157);
#else
testPlan(152);
#endif
test_implementation();
test_providerName();
@@ -92,9 +97,11 @@ int ChannelAccessIFTest::runAllTest() {
test_channelArray_destroy();
test_channelArrayTestNoConnection();
#ifdef ENABLE_STRESS_TESTS
test_stressConnectDisconnect();
test_stressConnectGetDisconnect();
test_stressMonitorAndProcess();
#endif
return testDone();
}