From 0a0b3db44c10f9b490423b833b7a392431010623 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 4 Aug 2015 12:43:40 +0200 Subject: [PATCH] Break off contract tests. --- test/CMakeLists.txt | 1 + test/contracts/CMakeLists.txt | 5 +++++ .../FixedFeeRegistrar.cpp} | 0 .../{libsolidity/SolidityWallet.cpp => contracts/Wallet.cpp} | 0 4 files changed, 6 insertions(+) create mode 100644 test/contracts/CMakeLists.txt rename test/{libsolidity/SolidityFixedFeeRegistrar.cpp => contracts/FixedFeeRegistrar.cpp} (100%) rename test/{libsolidity/SolidityWallet.cpp => contracts/Wallet.cpp} (100%) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 6e24e3347..f74751126 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -33,6 +33,7 @@ endif() if (SOLIDITY) add_subdirectory(libsolidity) + add_subdirectory(contracts) endif () if (JSONRPC) add_subdirectory(libweb3jsonrpc) diff --git a/test/contracts/CMakeLists.txt b/test/contracts/CMakeLists.txt new file mode 100644 index 000000000..3ceda13b0 --- /dev/null +++ b/test/contracts/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_policy(SET CMP0015 NEW) + +aux_source_directory(. SRCS) + +add_sources(${SRCS}) diff --git a/test/libsolidity/SolidityFixedFeeRegistrar.cpp b/test/contracts/FixedFeeRegistrar.cpp similarity index 100% rename from test/libsolidity/SolidityFixedFeeRegistrar.cpp rename to test/contracts/FixedFeeRegistrar.cpp diff --git a/test/libsolidity/SolidityWallet.cpp b/test/contracts/Wallet.cpp similarity index 100% rename from test/libsolidity/SolidityWallet.cpp rename to test/contracts/Wallet.cpp