aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-09-05 23:09:58 +0800
committerGav Wood <i@gavwood.com>2014-09-05 23:09:58 +0800
commit38dd3fb050cae0bc28205ecff8591fa44605efc7 (patch)
treea7a8c238e98f1ec02fe02aaf51c645bb494a27d3 /vm.cpp
parentd0d1e91a685dda428af9dd41a3afd83424dc5775 (diff)
downloaddexon-solidity-38dd3fb050cae0bc28205ecff8591fa44605efc7.tar
dexon-solidity-38dd3fb050cae0bc28205ecff8591fa44605efc7.tar.gz
dexon-solidity-38dd3fb050cae0bc28205ecff8591fa44605efc7.tar.bz2
dexon-solidity-38dd3fb050cae0bc28205ecff8591fa44605efc7.tar.lz
dexon-solidity-38dd3fb050cae0bc28205ecff8591fa44605efc7.tar.xz
dexon-solidity-38dd3fb050cae0bc28205ecff8591fa44605efc7.tar.zst
dexon-solidity-38dd3fb050cae0bc28205ecff8591fa44605efc7.zip
Project-wide reorganisation of namespaces.
Diffstat (limited to 'vm.cpp')
-rw-r--r--vm.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/vm.cpp b/vm.cpp
index 0647849a..2b75f0b3 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -33,9 +33,10 @@
using namespace std;
using namespace json_spirit;
-using namespace eth;
+using namespace dev;
+using namespace dev::eth;
-namespace eth { namespace test {
+namespace dev { namespace test {
class FakeExtVM: public ExtVMFace
{
@@ -387,7 +388,7 @@ void doTests(json_spirit::mValue& v, bool _fillin)
BOOST_REQUIRE(o.count("exec") > 0);
VM vm;
- eth::test::FakeExtVM fev;
+ dev::test::FakeExtVM fev;
fev.importEnv(o["env"].get_obj());
fev.importState(o["pre"].get_obj());
@@ -419,7 +420,7 @@ void doTests(json_spirit::mValue& v, bool _fillin)
BOOST_REQUIRE(o.count("out") > 0);
BOOST_REQUIRE(o.count("gas") > 0);
- eth::test::FakeExtVM test;
+ dev::test::FakeExtVM test;
test.importState(o["post"].get_obj());
test.importCallCreates(o["callcreates"].get_array());
int i = 0;
@@ -481,7 +482,7 @@ BOOST_AUTO_TEST_CASE(vm_tests)
string s = asString(contents("../../../cpp-ethereum/test/vmtests.json"));
BOOST_REQUIRE_MESSAGE(s.length() > 0, "Contents of 'vmtests.json' is empty.");
json_spirit::read_string(s, v);
- eth::test::doTests(v, true);
+ dev::test::doTests(v, true);
writeFile("../../../tests/vmtests.json", asBytes(json_spirit::write_string(v, true)));
}
/* catch (std::exception const& e)
@@ -496,7 +497,7 @@ BOOST_AUTO_TEST_CASE(vm_tests)
string s = asString(contents("../../../tests/vmtests.json"));
BOOST_REQUIRE_MESSAGE(s.length() > 0, "Contents of 'vmtests.json' is empty. Have you cloned the 'tests' repo branch develop?");
json_spirit::read_string(s, v);
- eth::test::doTests(v, false);
+ dev::test::doTests(v, false);
}
catch (std::exception const& e)
{