diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-09-26 10:29:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-26 10:29:17 +0200 |
| commit | 469babfe67688163429d2595705aac5462b7758f (patch) | |
| tree | d3d7d597a5e13f54e7a083e53bd47b3782fb2ff6 /test/test_all.py | |
| parent | b7fb283d8a5a57f9fa4ac4873b876a317d2ae3f7 (diff) | |
| parent | dd23691c86890e865d1e5fbe45ccdd591737dfa3 (diff) | |
| download | miasm-469babfe67688163429d2595705aac5462b7758f.tar.gz miasm-469babfe67688163429d2595705aac5462b7758f.zip | |
Merge pull request #1067 from a-vincent/ppc-tests
Add a few PPC32 tests
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 9dcd43e0..02bddb51 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -60,6 +60,7 @@ testset += RegressionTest(["aarch64/arch.py"], base_dir="arch") testset += RegressionTest(["sh4/arch.py"], base_dir="arch") testset += RegressionTest(["msp430/arch.py"], base_dir="arch") testset += RegressionTest(["mips32/arch.py"], base_dir="arch") +testset += RegressionTest(["ppc32/arch.py"], base_dir="arch") @@ -105,6 +106,7 @@ for script in ["x86/sem.py", "aarch64/unit/mn_ubfm.py", "msp430/sem.py", "mips32/unit/mn_bcc.py", + "ppc32/sem.py", ]: for jitter in ArchUnitTest.jitter_engines: if jitter in blacklist.get(script, []): |