MovI2R: Do not exhaustively test

This commit is contained in:
MerryMage 2021-01-31 13:13:10 +00:00
parent fe9207bb56
commit 1ab7657120

View File

@ -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);
}
}