diff options
author | chriseth <chris@ethereum.org> | 2018-03-15 01:05:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 01:05:48 +0800 |
commit | d0c96d53e90be5e58d8fef2e77fbd71baf2027ba (patch) | |
tree | c7dae3f233e23389ad2eb569732e8dbc98b6cfb5 /test/libdevcore | |
parent | abc7a45230614454d6ffb78447c112b63f712642 (diff) | |
parent | d63d41b3b545b0e13e2ee7f880120b2ba852c654 (diff) | |
download | dexon-solidity-d0c96d53e90be5e58d8fef2e77fbd71baf2027ba.tar dexon-solidity-d0c96d53e90be5e58d8fef2e77fbd71baf2027ba.tar.gz dexon-solidity-d0c96d53e90be5e58d8fef2e77fbd71baf2027ba.tar.bz2 dexon-solidity-d0c96d53e90be5e58d8fef2e77fbd71baf2027ba.tar.lz dexon-solidity-d0c96d53e90be5e58d8fef2e77fbd71baf2027ba.tar.xz dexon-solidity-d0c96d53e90be5e58d8fef2e77fbd71baf2027ba.tar.zst dexon-solidity-d0c96d53e90be5e58d8fef2e77fbd71baf2027ba.zip |
Merge pull request #3734 from ethereum/soltestOptions
test: Rename test/TestHelper.* to test/Options.* and add Options::val…
Diffstat (limited to 'test/libdevcore')
-rw-r--r-- | test/libdevcore/Checksum.cpp | 2 | ||||
-rw-r--r-- | test/libdevcore/IndentedWriter.cpp | 2 | ||||
-rw-r--r-- | test/libdevcore/JSON.cpp | 2 | ||||
-rw-r--r-- | test/libdevcore/StringUtils.cpp | 2 | ||||
-rw-r--r-- | test/libdevcore/SwarmHash.cpp | 2 | ||||
-rw-r--r-- | test/libdevcore/UTF8.cpp | 2 | ||||
-rw-r--r-- | test/libdevcore/Whiskers.cpp | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/test/libdevcore/Checksum.cpp b/test/libdevcore/Checksum.cpp index 4eedbd99..95066b69 100644 --- a/test/libdevcore/Checksum.cpp +++ b/test/libdevcore/Checksum.cpp @@ -22,7 +22,7 @@ #include <libdevcore/Exceptions.h> -#include "../TestHelper.h" +#include <test/Options.h> using namespace std; diff --git a/test/libdevcore/IndentedWriter.cpp b/test/libdevcore/IndentedWriter.cpp index a694aa1b..916c99d0 100644 --- a/test/libdevcore/IndentedWriter.cpp +++ b/test/libdevcore/IndentedWriter.cpp @@ -20,7 +20,7 @@ #include <libdevcore/IndentedWriter.h> -#include "../TestHelper.h" +#include <test/Options.h> using namespace std; diff --git a/test/libdevcore/JSON.cpp b/test/libdevcore/JSON.cpp index 39d71b42..39d958f5 100644 --- a/test/libdevcore/JSON.cpp +++ b/test/libdevcore/JSON.cpp @@ -21,7 +21,7 @@ #include <libdevcore/JSON.h> -#include "../TestHelper.h" +#include <test/Options.h> using namespace std; diff --git a/test/libdevcore/StringUtils.cpp b/test/libdevcore/StringUtils.cpp index 597457cc..9ee93d02 100644 --- a/test/libdevcore/StringUtils.cpp +++ b/test/libdevcore/StringUtils.cpp @@ -20,7 +20,7 @@ #include <libdevcore/StringUtils.h> -#include "../TestHelper.h" +#include <test/Options.h> using namespace std; diff --git a/test/libdevcore/SwarmHash.cpp b/test/libdevcore/SwarmHash.cpp index 1ed1da18..913586f8 100644 --- a/test/libdevcore/SwarmHash.cpp +++ b/test/libdevcore/SwarmHash.cpp @@ -20,7 +20,7 @@ #include <libdevcore/SwarmHash.h> -#include "../TestHelper.h" +#include <test/Options.h> using namespace std; diff --git a/test/libdevcore/UTF8.cpp b/test/libdevcore/UTF8.cpp index 719ada72..6de4570f 100644 --- a/test/libdevcore/UTF8.cpp +++ b/test/libdevcore/UTF8.cpp @@ -21,7 +21,7 @@ #include <libdevcore/CommonData.h> #include <libdevcore/UTF8.h> -#include "../TestHelper.h" +#include <test/Options.h> using namespace std; diff --git a/test/libdevcore/Whiskers.cpp b/test/libdevcore/Whiskers.cpp index 84149173..b12acdd7 100644 --- a/test/libdevcore/Whiskers.cpp +++ b/test/libdevcore/Whiskers.cpp @@ -20,7 +20,7 @@ #include <libdevcore/Whiskers.h> -#include "../TestHelper.h" +#include <test/Options.h> using namespace std; |