mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
31 lines
703 B
C++
31 lines
703 B
C++
//
|
|
// ProcessesTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/ProcessesTestSuite.cpp#1 $
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "ProcessesTestSuite.h"
|
|
#include "ProcessTest.h"
|
|
#include "NamedMutexTest.h"
|
|
#include "NamedEventTest.h"
|
|
#include "SharedMemoryTest.h"
|
|
|
|
|
|
CppUnit::Test* ProcessesTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("ProcessesTestSuite");
|
|
|
|
pSuite->addTest(ProcessTest::suite());
|
|
pSuite->addTest(NamedMutexTest::suite());
|
|
pSuite->addTest(NamedEventTest::suite());
|
|
pSuite->addTest(SharedMemoryTest::suite());
|
|
|
|
return pSuite;
|
|
}
|