mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
MovI2R: Do not exhaustively test
This commit is contained in:
parent
fe9207bb56
commit
1ab7657120
@ -54,11 +54,13 @@ public:
|
||||
|
||||
TEST(JitArm64, MovI2R_32BitValues)
|
||||
{
|
||||
Common::Random::PRNG rng{0};
|
||||
TestMovI2R test;
|
||||
for (u64 i = 0; i < 0x100000000; i++)
|
||||
for (u64 i = 0; i < 0x100000; i++)
|
||||
{
|
||||
test.Check32(static_cast<u32>(i));
|
||||
test.Check64(i);
|
||||
const u32 value = rng.GenerateValue<u32>();
|
||||
test.Check32(value);
|
||||
test.Check64(value);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user