diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-17 15:15:10 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-17 15:15:10 +0100 |
| commit | 87c3fe46c6fbc5649b3a06d91bedfabbe3f11009 (patch) | |
| tree | 6aeaee9c1febf68715359e580a27f8b39a64e95e /test/test_all.py | |
| parent | a49419dd5e16283b1663181a47cdc85b7eff14dc (diff) | |
| parent | 08e54aa9dd67e85753174242fab356cc2d2767c9 (diff) | |
| download | miasm-87c3fe46c6fbc5649b3a06d91bedfabbe3f11009.tar.gz miasm-87c3fe46c6fbc5649b3a06d91bedfabbe3f11009.zip | |
Merge pull request #278 from commial/fix-x86-string
Fix x86 string
Diffstat (limited to '')
| -rw-r--r-- | test/test_all.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py index 94f3d8ca..8c1cf3f8 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -109,8 +109,9 @@ QEMU_TESTS = { "conv": ("tcc", "python"), "bcd": ("tcc", "python"), "xchg": ("tcc", "python"), + "string": ("tcc", "python"), # Unsupported - # "floats", "string", "misc", "segs", "code16", "exceptions", + # "floats", "misc", "segs", "code16", "exceptions", # "single_step" } |