From ff5769c730d85e835574a1598b06223927d5773d Mon Sep 17 00:00:00 2001 From: Dwight Guth Date: Mon, 11 Feb 2019 21:44:27 +0000 Subject: [PATCH] Makefile, tests/failing.*: exclude failing tests --- Makefile | 3 ++- tests/failing.llvm | 3 +++ tests/failing.ocaml | 0 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 tests/failing.llvm create mode 100644 tests/failing.ocaml diff --git a/Makefile b/Makefile index a09a46fba8..4ce38ce018 100644 --- a/Makefile +++ b/Makefile @@ -296,7 +296,8 @@ slow_bchain_tests=$(wildcard tests/ethereum-tests/BlockchainTests/GeneralStateTe tests/ethereum-tests/BlockchainTests/GeneralStateTests/stCreateTest/CREATE_ContractRETURNBigOffset_d1g0v0.json bad_bchain_tests= tests/ethereum-tests/BlockchainTests/GeneralStateTests/stCreate2/RevertOpcodeInCreateReturns_d0g0v0.json \ tests/ethereum-tests/BlockchainTests/GeneralStateTests/stCreate2/RevertInCreateInInit_d0g0v0.json -all_bchain_tests=$(filter-out $(bad_bchain_tests), $(bchain_tests)) +failing_bchain_tests=$(shell cat tests/failing.${TEST_CONCRETE_BACKEND}) +all_bchain_tests=$(filter-out $(bad_bchain_tests), $(filter-out $(failing_bchain_tests), $(bchain_tests))) quick_bchain_tests=$(filter-out $(slow_bchain_tests), $(all_bchain_tests)) test-all-bchain: $(all_bchain_tests:=.test) diff --git a/tests/failing.llvm b/tests/failing.llvm new file mode 100644 index 0000000000..3a382d9c26 --- /dev/null +++ b/tests/failing.llvm @@ -0,0 +1,3 @@ +tests/ethereum-tests/BlockchainTests/GeneralStateTests/stAttackTest/ContractCreationSpam_d0g0v0.json +tests/ethereum-tests/BlockchainTests/GeneralStateTests/stRandom/randomStatetest177_d0g0v0.json +tests/ethereum-tests/BlockchainTests/GeneralStateTests/stSpecialTest/JUMPDEST_Attack_d0g0v0.json diff --git a/tests/failing.ocaml b/tests/failing.ocaml new file mode 100644 index 0000000000..e69de29bb2