diff --git a/circle.yml b/circle.yml index 96c7db4..aee04c4 100644 --- a/circle.yml +++ b/circle.yml @@ -9,13 +9,19 @@ jobs: - run: name: "Configure" working_directory: ~/build - command: cmake ../project -DEVMC_BUILD_EXAMPLES=ON -DEVMC_BUILD_TESTS=ON + command: cmake ../project -DCMAKE_INSTALL_PREFIX=~/install -DBUILD_SHARED_LIBS=ON -DEVMC_BUILD_EXAMPLES=ON -DEVMC_BUILD_TESTS=ON - run: name: "Build" command: cmake --build ~/build - run: name: "Test" command: cmake --build ~/build --target test + - run: + name: "Install" + command: cmake --build ~/build --target install + - run: + name: "Run evmc-vmtester libevmc-examplevm.so" + command: ~/install/bin/evmc-vmtester ~/install/lib/libevmc-examplevm.so test-docs: docker: diff --git a/test/vmtester/CMakeLists.txt b/test/vmtester/CMakeLists.txt index cecb74d..dbf4440 100644 --- a/test/vmtester/CMakeLists.txt +++ b/test/vmtester/CMakeLists.txt @@ -47,5 +47,3 @@ set_tests_properties(vmtester-novm PROPERTIES WILL_FAIL TRUE FAIL_REGULAR_EXPRESSION "required but missing" ) - -# TODO: Add test for `evmc-vmtester examplevm.so`