diff options
| author | Ajax <commial@gmail.com> | 2017-06-27 12:28:01 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2017-06-27 12:42:57 +0200 |
| commit | 04fc16be01be380b4b25d795f271c38e8dabc79f (patch) | |
| tree | 17d4f1e9112257ca1a3ee38e9471bf100f8061fc /test/test_all.py | |
| parent | 5520569d1c6d969fecd968557fd2251e9d1399ee (diff) | |
| download | miasm-04fc16be01be380b4b25d795f271c38e8dabc79f.tar.gz miasm-04fc16be01be380b4b25d795f271c38e8dabc79f.zip | |
Add a regression test for DIV 128bits
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index b70afa9a..3da2dbb5 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -60,6 +60,7 @@ class ArchUnitTest(RegressionTest): # script -> blacklisted jitter blacklist = { "x86/unit/mn_float.py": ["python", "llvm"], + "x86/unit/mn_div.py": ["tcc", "gcc"], } for script in ["x86/sem.py", "x86/unit/mn_strings.py", @@ -80,6 +81,7 @@ for script in ["x86/sem.py", "x86/unit/mn_pushpop.py", "x86/unit/mn_seh.py", "x86/unit/mn_cpuid.py", + "x86/unit/mn_div.py", "arm/arch.py", "arm/sem.py", "aarch64/unit/mn_ubfm.py", |