about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2020-05-01 00:42:34 +0200
committerGitHub <noreply@github.com>2020-05-01 00:42:34 +0200
commitcf41ca9d2c883a2f1d871415fae1b7ea81135acd (patch)
treebf53463dcc049b4de41fa642a4e6884be488dcaa
parent765f8ae8158b987f4c6b7c2cf51d2a795b2a3f2e (diff)
parent64d665ac9b551350cc8de630d0e7e3688e8b0f82 (diff)
downloadmiasm-cf41ca9d2c883a2f1d871415fae1b7ea81135acd.tar.gz
miasm-cf41ca9d2c883a2f1d871415fae1b7ea81135acd.zip
Merge pull request #1214 from serpilliere/add_extendted_test_ldr
Add loader extended tests
Diffstat (limited to '')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 3a9d4b07..d3ad7ee5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,7 +24,8 @@ env:
     - MIASM_TEST_EXTRA_ARG="-o python -t qemu,long"
     - MIASM_TEST_EXTRA_ARG="-o z3"
     - MIASM_TEST_EXTRA_ARG="-o cparser"
-    - MIASM_EXTENTED_TESTS="ls_x64"
+    - MIASM_EXTENTED_TESTS_LS_X64="ls_x64"
+    - MIASM_EXTENTED_TESTS_LOADER="loader"
 before_script:
 - pip install -r optional_requirements.txt
 # codespell
@@ -36,4 +37,5 @@ before_script:
 - git clone https://github.com/cea-sec/miasm-extended-tests
 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" || (cd "miasm-extended-tests/$MIASM_EXTENTED_TESTS" && ./run.sh "$TRAVIS_BUILD_DIR")
+  - 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)