aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-05-13 23:05:27 +0800
committerGav Wood <i@gavwood.com>2014-05-13 23:05:27 +0800
commitebf6d65d9270368d1ad8864b06fcf299ac565df6 (patch)
tree5ff5250cfe114c7a765e24bb308cdc119502ff12 /vm.cpp
parent87d48881d833bd0d48860b007c7d73fb3f6fb2f7 (diff)
downloaddexon-solidity-ebf6d65d9270368d1ad8864b06fcf299ac565df6.tar.gz
dexon-solidity-ebf6d65d9270368d1ad8864b06fcf299ac565df6.tar.zst
dexon-solidity-ebf6d65d9270368d1ad8864b06fcf299ac565df6.zip
Move paths so default build dir is cpp-ethereum/build.
Diffstat (limited to 'vm.cpp')
-rw-r--r--vm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm.cpp b/vm.cpp
index af3fd4a3..a7ad8daa 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -472,11 +472,11 @@ BOOST_AUTO_TEST_CASE(vm_tests)
{
cnote << "Populating VM tests...";
json_spirit::mValue v;
- string s = asString(contents("../../cpp-ethereum/test/vmtests.json"));
+ 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);
- writeFile("../../tests/vmtests.json", asBytes(json_spirit::write_string(v, true)));
+ writeFile("../../../tests/vmtests.json", asBytes(json_spirit::write_string(v, true)));
}
catch( std::exception& e)
{
@@ -488,7 +488,7 @@ BOOST_AUTO_TEST_CASE(vm_tests)
{
cnote << "Testing VM...";
json_spirit::mValue v;
- string s = asString(contents("../../tests/vmtests.json"));
+ 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);