diff options
author | Andreas Färber <afaerber@suse.de> | 2014-01-23 17:47:44 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-02-13 17:47:43 +0100 |
commit | 292363e15c92fd37bcb424fafebc2e362b6c8f03 (patch) | |
tree | e128d31809acd3bc21489636a43cbe6eeffc03bb /tests/qom-test.c | |
parent | aaab89a68ed1f0ab791cfda2061be34c102490b1 (diff) |
target-ppc: Make ppc40x CPUs available in ppcemb
Not only 44x CPUs (BookE) but also 40x CPUs can run with 1k page size.
Move the criteria to a central inline function to avoid repetition
and #ifdef'fery. Update qom-test to no longer exempt them.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/qom-test.c')
-rw-r--r-- | tests/qom-test.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/qom-test.c b/tests/qom-test.c index 5e5af7a50f..4dd23f8ad0 100644 --- a/tests/qom-test.c +++ b/tests/qom-test.c @@ -221,10 +221,7 @@ int main(int argc, char **argv) } else if (strcmp(arch, "or32") == 0) { ADD_MACHINE_TESTS(arch, openrisc_machines); } else if (strcmp(arch, "ppcemb") == 0) { -#if 0 - /* XXX Available in ppcemb but don't work */ ADD_MACHINE_TESTS(arch, ppc405_machines); -#endif ADD_MACHINE_TESTS(arch, ppc440_machines); } else if (strcmp(arch, "ppc") == 0) { ADD_MACHINE_TESTS(arch, ppc405_machines); |