about summary refs log tree commit diff stats
path: root/test (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * TestAll: Introduce ExampleDir, and use it for expressions (ExampleExpression)Camille Mougey2015-01-231-19/+41
| |
| * Example: Move expression samples to sample directoryCamille Mougey2015-01-231-3/+4
| |
| * Example: Rename symbol_exec to single_instr in a specific symbol_exec directoryCamille Mougey2015-01-231-3/+5
| |
| * Example: Rename Test Dis to Disasm FullCamille Mougey2015-01-231-12/+14
| |
| * Example/Test_Dis: OptParse to ArgParseCamille Mougey2015-01-231-3/+2
| |
| * Example: Rename Disasm_03 to Disasm_FileCamille Mougey2015-01-231-1/+2
| |
| * Example: Rename Disasm_02 to Disasm FunctionCamille Mougey2015-01-231-1/+1
| |
| * Example: Rename Disasm_01 to Disasm_Single_InstrCamille Mougey2015-01-231-1/+1
| |
| * Example: Rename test_jit_* to jit_*Camille Mougey2015-01-231-6/+6
| |
| * Examples: Update x86_32_sc.bin locationCamille Mougey2015-01-231-1/+2
| |
| * Examples: Update *.S locationCamille Mougey2015-01-231-4/+8
| |
| * Examples: Update md5_arm locationCamille Mougey2015-01-231-1/+2
| |
| * Examples: Update box_upx.exe locationCamille Mougey2015-01-231-3/+13
| |
| * TestAll: Use only asm_box_x86_32 and .S files, to reduce copy/paste errorsCamille Mougey2015-01-231-21/+13
| |
* | arm: Add umull,umlal,smull,smlal to semWladimir J. van der Laan2015-01-261-0/+24
| |
* | arm: Add instruction umlalWladimir J. van der Laan2015-01-241-0/+2
|/ | | | | umull, smull, smull and smlal are there, but not umlal (unsigned multiply and accumulate long)
* Added TranslatorZ3 to the Miasm test suite.Florent Monjalet2015-01-232-0/+135
|
* Example/TestAll: Fix a typography (TAGS indirection must be used)Camille Mougey2015-01-211-1/+1
|
* Merge pull request #38 from serpilliere/graph_add_dominatorsCamille Mougey2015-01-201-0/+23
|\ | | | | Graph: add dominators computation
| * DiGraph: add dominators regression testserpilliere2015-01-181-0/+23
| |
* | Arm: add instruction bfcFabrice Desclaux2015-01-121-0/+3
|/
* Example: Add a new example using C & Python translationCamille Mougey2014-12-141-0/+1
|
* Test: Update API of ir2C testCamille Mougey2014-12-141-35/+45
|
* TestAll: Fix wrong comment in commit #90aa4b8195cefddee192df3c4c674b648f21e228Camille Mougey2014-12-141-2/+0
|
* Test: remove hardcoded python path (Tx to Aymeric Vincent)Fabrice Desclaux2014-12-121-1/+3
|
* Test: update ARM semantic testsFabrice Desclaux2014-12-111-0/+2
|
* Arm: Fix cf in logical mnemonicsFabrice Desclaux2014-12-111-59/+170
| | | | /!\ TODO: CF is invalid in case of rotation in second argument.
* Merge branch 'feature-exprrandom' of https://github.com/commial/miasm into ↵Fabrice Desclaux2014-12-111-0/+1
|\ | | | | | | | | | | | | commial-feature-exprrandom Conflicts: miasm2/expression/expression_helper.py
| * Example: Add an example for ExprRandomCamille Mougey2014-12-101-0/+1
| |
* | Test: Add a regression test for Variables_IdentifierCamille Mougey2014-12-092-0/+44
|/
* Arm: add mnemonic smullFabrice Desclaux2014-12-081-0/+5
|
* TestAll: Add a class ExampleTestDis for test_dis.py specificitiesCamille Mougey2014-12-041-13/+26
|
* TestAll: Some example products were missingCamille Mougey2014-12-041-6/+11
|
* TestAll: Use tag "llvm" to filter LLVM dependent test unitsCamille Mougey2014-11-031-11/+9
|
* TestAll: Merge and tag tests, handle "ommit-tags" argumentCamille Mougey2014-11-031-54/+96
| | | | | | | | | | | | | Current tags: - example: unit test based on examples - regression: regression tests - long: tests known to be long, ie. more than 1min on Core i5 Example: - launching only regression tests: $> python test_all.py -t example - do not launch long tests: $> python test_all.py -t long
* Test/Utils: Add "filter_tags" to filter test units according to a tag listCamille Mougey2014-11-031-0/+28
|
* Test/Utils: Add "tags" attribute to tag test unitsCamille Mougey2014-11-031-3/+6
|
* TestAll: Add products for 'unpack_upx' exampleCamille Mougey2014-10-311-2/+8
|
* TestSet: Avoid error on duplicate products cleaningCamille Mougey2014-10-311-12/+32
|
* TestAll: Update test all to use test utilsajax2014-10-171-458/+218
|
* Test/utils: Add utils for running testsajax2014-10-176-0/+438
| | | | | | | | - cosmetics: display functions - monothread: callbacks for basic test run view - screendisplay: callbacks for enhanced test run view - test: describe a Test case - testset: describe a Test set and implement methods to run it
* Reg test: add arm jit little/big endianFabrice Desclaux2014-10-091-0/+2
|
* Arch/jit: add endianess support jittersFabrice Desclaux2014-10-095-18/+22
|
* Sandbox: add arm archFabrice Desclaux2014-10-071-1/+1
|
* Move os_dep out of the jitter moduleFabrice Desclaux2014-10-072-4/+4
|
* Remove vm_ prefix /!\ API MODIFFabrice Desclaux2014-10-072-36/+36
| | | | | | | The jitter cpu/vm modules used an unecessary vm_ prefix for various api. jitter.cpu.vm_get_gpreg() => jitter.cpu.get_gpreg() jitter.vm.vm_get_mem... => jitter.vm.get_mem...
* Arm: fix carry flag in sub operation; update reg testsFabrice Desclaux2014-10-061-24/+62
|
* mergeFabrice Desclaux2014-10-021-1/+6
|\
| * TestAll: Assert on test successesajax2014-09-301-1/+6
| |
* | Example: sandbox_pe to dietFabrice Desclaux2014-10-021-1/+0
|/