mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 04:17:55 +01:00
WinCE fixes
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -30,6 +30,9 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(_WIN32_WCE)
|
||||||
|
|
||||||
|
|
||||||
#include "WinConfigurationTest.h"
|
#include "WinConfigurationTest.h"
|
||||||
#include "CppUnit/TestCaller.h"
|
#include "CppUnit/TestCaller.h"
|
||||||
#include "CppUnit/TestSuite.h"
|
#include "CppUnit/TestSuite.h"
|
||||||
@@ -147,3 +150,6 @@ CppUnit::Test* WinConfigurationTest::suite()
|
|||||||
|
|
||||||
return pSuite;
|
return pSuite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif // _WIN32_WCE
|
||||||
@@ -30,6 +30,9 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(_WIN32_WCE)
|
||||||
|
|
||||||
|
|
||||||
#include "WinRegistryTest.h"
|
#include "WinRegistryTest.h"
|
||||||
#include "CppUnit/TestCaller.h"
|
#include "CppUnit/TestCaller.h"
|
||||||
#include "CppUnit/TestSuite.h"
|
#include "CppUnit/TestSuite.h"
|
||||||
@@ -121,3 +124,6 @@ CppUnit::Test* WinRegistryTest::suite()
|
|||||||
|
|
||||||
return pSuite;
|
return pSuite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif // _WIN32_WCE
|
||||||
@@ -31,16 +31,20 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "WindowsTestSuite.h"
|
#include "WindowsTestSuite.h"
|
||||||
|
#ifndef _WIN32_WCE
|
||||||
#include "WinRegistryTest.h"
|
#include "WinRegistryTest.h"
|
||||||
#include "WinConfigurationTest.h"
|
#include "WinConfigurationTest.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
CppUnit::Test* WindowsTestSuite::suite()
|
CppUnit::Test* WindowsTestSuite::suite()
|
||||||
{
|
{
|
||||||
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("WindowsTestSuite");
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("WindowsTestSuite");
|
||||||
|
|
||||||
|
#ifndef _WIN32_WCE
|
||||||
pSuite->addTest(WinRegistryTest::suite());
|
pSuite->addTest(WinRegistryTest::suite());
|
||||||
pSuite->addTest(WinConfigurationTest::suite());
|
pSuite->addTest(WinConfigurationTest::suite());
|
||||||
|
#endif
|
||||||
|
|
||||||
return pSuite;
|
return pSuite;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user