Skip to content

Commit

Permalink
Test cases for SSA IR (crytic#1101)
Browse files Browse the repository at this point in the history
* Test cases for SSA IR generation

Attempts to verify a few basic properties of the generated SSA IR.
Currently these tests fail because of IR that seems to be incorrect.

Co-authored-by: Emilio López <[email protected]>
  • Loading branch information
hbrodin and elopez authored Apr 10, 2022
1 parent 3af6616 commit 644f5e5
Show file tree
Hide file tree
Showing 2 changed files with 980 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/IR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: IR tests

defaults:
run:
# To load bashrc
shell: bash -ieo pipefail {0}

on:
pull_request:
branches: [master, dev]
schedule:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'

jobs:
build:
name: IR tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2022]

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Python 3.6
uses: actions/setup-python@v3
with:
python-version: 3.6

- name: Install dependencies
run: |
python setup.py install
pip install deepdiff
pip install pytest
pip install "solc-select>=v1.0.0b1"
solc-select install all
solc-select use 0.8.11
- name: Test with pytest
run: |
pytest tests/test_ssa_generation.py
Loading

0 comments on commit 644f5e5

Please sign in to comment.