diff options
| author | Ajax <commial@gmail.com> | 2018-05-17 10:52:40 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-05-17 10:52:40 +0200 |
| commit | 23cee4aeb4d667b6ff93b279a8619acf56a70bc3 (patch) | |
| tree | 37ec6ee8f5c153aa34f7476d76053578eb50a69d /test/test_all.py | |
| parent | 18ac4b21a484265ff50f400ad400a6f028038455 (diff) | |
| download | miasm-23cee4aeb4d667b6ff93b279a8619acf56a70bc3.tar.gz miasm-23cee4aeb4d667b6ff93b279a8619acf56a70bc3.zip | |
Add support for XMM0-15 registers in x86
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 3572bda7..f9c90759 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -97,6 +97,8 @@ for script in ["x86/sem.py", tags = [TAGS[jitter]] if jitter in TAGS else [] testset += ArchUnitTest(script, jitter, base_dir="arch", tags=tags) +testset += ArchUnitTest("x86/unit/access_xmm.py", "python", base_dir="arch") + ### QEMU regression tests class QEMUTest(RegressionTest): """Test against QEMU regression tests |