Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add AE stage 1 #1360

Merged
merged 20 commits into from
Feb 8, 2024
14 changes: 11 additions & 3 deletions .github/workflows/github-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,21 @@ jobs:
run:
ctest -R double_free -VV

- name: ctest symabs
- name: ctest ae_symabs
working-directory: ${{github.workspace}}/Release-build
run:
ctest -R symabs -VV

- name: ctest ae_assert
working-directory: ${{github.workspace}}/Release-build
run:
ctest -R ae_assert_test -VV

- name: ctest ae_overflow
working-directory: ${{github.workspace}}/Release-build
run:
ctest -R ae_overflow_test -VV

- name: ctest cfl_tests
working-directory: ${{github.workspace}}/Release-build
run:
Expand Down Expand Up @@ -122,8 +132,6 @@ jobs:
lcov --remove coverage.info '${{github.workspace}}/llvm-*.obj/*' --output-file coverage.info
lcov --remove coverage.info '${{github.workspace}}/svf/include/FastCluster/*' --output-file coverage.info
lcov --remove coverage.info '${{github.workspace}}/svf/lib/FastCluster/*' --output-file coverage.info
lcov --remove coverage.info '${{github.workspace}}/svf/include/AbstractExecution/*' --output-file coverage.info
lcov --remove coverage.info '${{github.workspace}}/svf/lib/AbstractExecution/*' --output-file coverage.info

- name: upload-coverage
if: runner.os == 'Linux'
Expand Down
1 change: 1 addition & 0 deletions svf-llvm/tools/AE/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
add_llvm_executable(ae ae.cpp)
target_link_libraries(ae PUBLIC ${llvm_libs} SvfLLVM)

Loading
Loading