diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-16 14:43:46 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-16 14:43:46 +0100 |
| commit | c0826fefbbcd00c60f0e9f27dcac92c98fcb9d8e (patch) | |
| tree | d83afd13938fa9d07e6e44121eb47163997706ef /test/test_all.py | |
| parent | d8d4a99b21559514d8371b46e1d1df459b43a41e (diff) | |
| parent | 09a12d002dc5c6e629fcbce1b4510bf03ca058d3 (diff) | |
| download | miasm-c0826fefbbcd00c60f0e9f27dcac92c98fcb9d8e.tar.gz miasm-c0826fefbbcd00c60f0e9f27dcac92c98fcb9d8e.zip | |
Merge pull request #275 from commial/fix-x86-bcd
Fix x86 bcd
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 6288466a..fe9c6880 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -107,8 +107,9 @@ QEMU_TESTS = { "lea": ("tcc", "python"), "self_modifying_code": ("tcc", "python"), "conv": ("tcc", "python"), + "bcd": ("tcc", "python"), # Unsupported - # "floats", "bcd", "xchg", "string", "misc", "segs", "code16", "exceptions", + # "floats", "xchg", "string", "misc", "segs", "code16", "exceptions", # "single_step" } |