-
Notifications
You must be signed in to change notification settings - Fork 322
Creating a GeneralStateTest
Yoichi Hirai edited this page May 15, 2017
·
1 revision
- An idea what to test
- A cpp-ethereum branch that should run the test case correctly
- Access to ethereum/tests repository
- checkout the
cpp-ethereum
branch that should run the test case correctly - build the branch
mkdir -p ~/src/cpp-ethereum/build
cd ~/src/cpp-ethereum/build
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DVMTRACE=1 ..
make
- checkout
ethereum/tests