From bf329ede53f34aaf25f7fce3a6c4f2cc1e3e261b Mon Sep 17 00:00:00 2001 From: N2614 Date: Thu, 19 Jan 2012 02:23:22 +0000 Subject: [PATCH] =?UTF-8?q?=E8=BF=BD=E5=8A=A0=E5=BF=98=E3=82=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@572 385bec56-5757-e545-9c3a-d8741f4650f1 --- .../sources/tests/googletest/common/OMakefile | 0 .../sources/tests/googletest/common/common_stub.h | 6 ++++++ .../sources/tests/googletest/common/test_common.h | 12 ++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 trunk/ConsoleDataMigration/sources/tests/googletest/common/OMakefile create mode 100644 trunk/ConsoleDataMigration/sources/tests/googletest/common/common_stub.h create mode 100644 trunk/ConsoleDataMigration/sources/tests/googletest/common/test_common.h diff --git a/trunk/ConsoleDataMigration/sources/tests/googletest/common/OMakefile b/trunk/ConsoleDataMigration/sources/tests/googletest/common/OMakefile new file mode 100644 index 0000000..e69de29 diff --git a/trunk/ConsoleDataMigration/sources/tests/googletest/common/common_stub.h b/trunk/ConsoleDataMigration/sources/tests/googletest/common/common_stub.h new file mode 100644 index 0000000..455195e --- /dev/null +++ b/trunk/ConsoleDataMigration/sources/tests/googletest/common/common_stub.h @@ -0,0 +1,6 @@ +#ifndef COMMON_STUB_H_ +#define COMMON_STUB_H_ + +#define NN_UNUSED_VAR(var) ((void)&var); + +#endif /* COMMON_STUB_H_ */ diff --git a/trunk/ConsoleDataMigration/sources/tests/googletest/common/test_common.h b/trunk/ConsoleDataMigration/sources/tests/googletest/common/test_common.h new file mode 100644 index 0000000..eaddcea --- /dev/null +++ b/trunk/ConsoleDataMigration/sources/tests/googletest/common/test_common.h @@ -0,0 +1,12 @@ +#ifndef TEST_COMMON_H_ +#define TEST_COMMON_H_ + +#include +#include "types.h" +#include "common_stub.h" + +#if defined(PCTEST_USE_STUB) +#include "stub.h" +#endif + +#endif /* TEST_COMMON_H_ */