Browse Source

blockweight: random test windows fix

attempt 1
cl-refactor
winsvega 10 years ago
parent
commit
e2d58a93e2
  1. 4
      test/fuzzTesting/checkRandomStateTest.cpp
  2. 3
      test/fuzzTesting/checkRandomVMTest.cpp
  3. 4
      test/fuzzTesting/createRandomStateTest.cpp
  4. 4
      test/fuzzTesting/createRandomVMTest.cpp
  5. 2
      test/libevm/vm.h

4
test/fuzzTesting/checkRandomStateTest.cpp

@ -25,8 +25,8 @@
#include <libdevcore/Exceptions.h>
#include <libdevcore/Log.h>
#include <libevm/VMFactory.h>
#include "TestHelper.h"
#include "../libevm/vm.h"
#include <test/libevm/vm.h>
#include <test/TestHelper.h>
#pragma GCC diagnostic ignored "-Wunused-parameter"
using namespace std;

3
test/fuzzTesting/checkRandomVMTest.cpp

@ -25,7 +25,8 @@
#include <libdevcore/Exceptions.h>
#include <libdevcore/Log.h>
#include <libevm/VMFactory.h>
#include "../libevm/vm.h"
#include <test/libevm/vm.h>
#include <test/TestHelper.h>
#pragma GCC diagnostic ignored "-Wunused-parameter"

4
test/fuzzTesting/createRandomStateTest.cpp

@ -35,8 +35,8 @@
#include <libdevcore/CommonData.h>
#include <libevmcore/Instruction.h>
#include <libevm/VMFactory.h>
#include "../TestHelper.h"
#include "../libevm/vm.h"
#include <test/libevm/vm.h>
#include <test/TestHelper.h>
using namespace std;
using namespace json_spirit;

4
test/fuzzTesting/createRandomVMTest.cpp

@ -35,8 +35,8 @@
#include <libdevcore/CommonData.h>
#include <libevmcore/Instruction.h>
#include <libevm/VMFactory.h>
#include <libevm/vm.h>
#include <TestHelper.h>
#include <test/libevm/vm.h>
#include <test/TestHelper.h>
using namespace std;
using namespace json_spirit;

2
test/libevm/vm.h

@ -38,7 +38,7 @@ along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
#include <libethereum/Transaction.h>
#include <libethereum/ExtVM.h>
#include <libethereum/State.h>
#include "../TestHelper.h"
#include <test/TestHelper.h>
namespace dev { namespace test {

Loading…
Cancel
Save