We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98944df commit bd71be0Copy full SHA for bd71be0
CMakeLists.txt
@@ -64,6 +64,7 @@ endif()
64
65
add_subdirectory(evmc)
66
add_subdirectory(src)
67
+enable_testing()
68
add_subdirectory(test)
69
70
circle.yml
@@ -163,8 +163,9 @@ defaults:
163
evmc-test: &evmc-test
164
run:
165
name: "Run evmc tests"
166
+ working_directory: ~/build
167
command: |
- ~/build/evmc/test/evmc-vmtester ~/build/src/libhera.so
168
+ ctest
169
170
evm2wasm-test: &evm2wasm-test
171
evmc
test/CMakeLists.txt
@@ -1,3 +1,9 @@
1
+include(../evmc/cmake/EVMC.cmake)
2
+
3
+if(TARGET evmc::evmc-vmtester)
4
+ evmc_add_vm_test(NAME evmc-check TARGET hera)
5
+endif()
6
7
if(HERA_FUZZING)
8
add_subdirectory(fuzzing)
9
endif()
0 commit comments