diff options
| -rw-r--r-- | .travis.yml | 14 | ||||
| -rw-r--r-- | miasm2/core/asmbloc.py | 10 |
2 files changed, 12 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index 60c4defd..8253cb24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,17 @@ addons: - llvm-6.0 - llvm-6.0-dev - g++-5 -env: CXX=g++-5 LLVM_CONFIG=llvm-config-6.0 +env: + global: CXX=g++-5 LLVM_CONFIG=llvm-config-6.0 + matrix: + - MIASM_TEST_TAG=regression + - MIASM_TEST_TAG=example + - MIASM_TEST_TAG=long + - MIASM_TEST_TAG=llvm + - MIASM_TEST_TAG=gcc + - MIASM_TEST_TAG=z3 + - MIASM_TEST_TAG=qemu + - MIASM_TEST_TAG=cparser before_script: - pip install -r optional_requirements.txt # codespell @@ -18,4 +28,4 @@ before_script: # install - python setup.py build build_ext - python setup.py install -script: cd test && python test_all.py && git ls-files -o --exclude-standard +script: cd test && python test_all.py -o=$MIASM_TEST_TAG && git ls-files -o --exclude-standard diff --git a/miasm2/core/asmbloc.py b/miasm2/core/asmbloc.py deleted file mode 100644 index 54760f4e..00000000 --- a/miasm2/core/asmbloc.py +++ /dev/null @@ -1,10 +0,0 @@ -""" -This module will be removed in favour of asmblock.py -Cause: French tipo. -""" -import warnings -from miasm2.core.asmblock import * - -warnings.warn('DEPRECATION WARNING: use "asmblock" sub-module instead of "asmbloc"') - -log_asmbloc = log_asmblock |