Merge pull request #848 from chewi/TEST_ENV

Rename TEST_ENV macro to BARRIER_TEST_ENV
This commit is contained in:
Povilas Kanapickas 2020-08-23 14:25:48 +03:00 committed by GitHub
commit 600d31f29b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 24 additions and 24 deletions

View File

@ -24,7 +24,7 @@
#include "common/stdset.h"
#include "common/stdvector.h"
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
#include <gtest/gtest_prod.h>
#endif
@ -329,7 +329,7 @@ public:
//@}
private:
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
FRIEND_TEST(KeyMapTests,
findBestKey_requiredDown_matchExactFirstItem);
FRIEND_TEST(KeyMapTests,

View File

@ -42,7 +42,7 @@ public:
Screen(IPlatformScreen* platformScreen, IEventQueue* events);
virtual ~Screen();
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
Screen() : m_mock(true) { }
#endif

View File

@ -59,7 +59,7 @@ public:
// sending dragging information to server
void sendDragInfo(UInt32 fileCount, const char* info, size_t size);
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
void handleDataForTest() { handleData(Event(), NULL); }
#endif

View File

@ -82,7 +82,7 @@ private:
ClientList m_clients;
mutable std::mutex m_clientsMutex;
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
public:
IpcServer() :
m_mock(true),

View File

@ -136,7 +136,7 @@ private:
bool m_lock;
};
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
public: // yuck
#endif
typedef std::vector<KeyModifierMask> KeyModifierMaskList;
@ -169,7 +169,7 @@ private:
// autorepeat state
XKeyboardState m_keyboardState;
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
public:
SInt32 group() const { return m_group; }
void group(const SInt32& group) { m_group = group; }

View File

@ -174,7 +174,7 @@ public:
Config(IEventQueue* events);
virtual ~Config();
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
Config() : m_inputFilter(NULL) { }
#endif

View File

@ -333,7 +333,7 @@ public:
InputFilter(const InputFilter&);
virtual ~InputFilter();
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
InputFilter() : m_primaryClient(NULL) { }
#endif

View File

@ -37,7 +37,7 @@ public:
PrimaryClient(const std::string& name, barrier::Screen* screen);
~PrimaryClient();
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
PrimaryClient() : BaseClientProxy("") { }
#endif

View File

@ -110,7 +110,7 @@ public:
barrier::Screen* screen, IEventQueue* events, ServerArgs const& args);
~Server();
#ifdef TEST_ENV
#ifdef BARRIER_TEST_ENV
Server() : m_mock(true), m_config(NULL) { }
void setActive(BaseClientProxy* active) { m_active = active; }
#endif

View File

@ -19,7 +19,7 @@
// TODO: fix, tests failing intermittently on mac.
#ifndef WINAPI_CARBON
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "test/global/TestEventQueue.h"
#include "ipc/IpcServer.h"

View File

@ -18,7 +18,7 @@
// TODO: fix, tests failing intermittently on mac.
#ifndef WINAPI_CARBON
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "test/mock/server/MockConfig.h"
#include "test/mock/server/MockPrimaryClient.h"

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "test/mock/barrier/MockEventQueue.h"
#include "test/mock/barrier/MockKeyMap.h"

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "test/mock/barrier/MockKeyMap.h"
#include "test/mock/barrier/MockEventQueue.h"

View File

@ -17,7 +17,7 @@
#pragma once
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "barrier/App.h"

View File

@ -17,7 +17,7 @@
#pragma once
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "barrier/ArgParser.h"

View File

@ -17,7 +17,7 @@
#pragma once
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "barrier/Screen.h"

View File

@ -17,7 +17,7 @@
#pragma once
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "server/Config.h"

View File

@ -17,7 +17,7 @@
#pragma once
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "server/InputFilter.h"

View File

@ -17,7 +17,7 @@
#pragma once
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "server/PrimaryClient.h"
#include "base/String.h"

View File

@ -17,7 +17,7 @@
#pragma once
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "server/Server.h"

View File

@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "barrier/KeyMap.h"

View File

@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define TEST_ENV
#define BARRIER_TEST_ENV
#include "test/mock/ipc/MockIpcServer.h"