diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-29 11:45:27 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-29 11:45:27 +0100 |
| commit | 749c1e3868fcdcf0c5273be22a2e9677ba4e3933 (patch) | |
| tree | 5f89e169abfb4642726a994982899982f9692778 /.travis.yml | |
| parent | 82dfab47f7515defe0844bae4a404ed32c153a5b (diff) | |
| download | focaccia-miasm-749c1e3868fcdcf0c5273be22a2e9677ba4e3933.tar.gz focaccia-miasm-749c1e3868fcdcf0c5273be22a2e9677ba4e3933.zip | |
Add extended tests ir
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index d3ad7ee5..f9e95d2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,7 @@ env: - MIASM_TEST_EXTRA_ARG="-o cparser" - MIASM_EXTENTED_TESTS_LS_X64="ls_x64" - MIASM_EXTENTED_TESTS_LOADER="loader" + - MIASM_EXTENTED_TESTS_IR="ir_tests" before_script: - pip install -r optional_requirements.txt # codespell @@ -39,3 +40,4 @@ script: - test -z "$MIASM_TEST_EXTRA_ARG" || (cd test && flags=""; python --version |& grep -q "Python 3" || flags="-W error"; python $flags test_all.py $MIASM_TEST_EXTRA_ARG && git ls-files -o --exclude-standard) - test -z "$MIASM_EXTENTED_TESTS_LS_x64" || (cd "miasm-extended-tests/$MIASM_EXTENTED_TESTS_LS_X64" && ./run.sh "$TRAVIS_BUILD_DIR") - test -z "$MIASM_EXTENTED_TESTS_LOADER" || (cd "miasm-extended-tests/$MIASM_EXTENTED_TESTS_LOADER" && ./test_dll.py) + - test -z "$MIASM_EXTENTED_TESTS_IR" || (cd "miasm-extended-tests/$MIASM_EXTENTED_TESTS_IR" && ./run.sh) |