From ab383b4be5c6c9d0cc01b8e5ab2bd4b85250a689 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Fri, 5 Aug 2016 01:51:35 +0100 Subject: [PATCH] Break tests by fixing them --- tests/arm/fuzz_arm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arm/fuzz_arm.cpp b/tests/arm/fuzz_arm.cpp index a5ec8052..816896cd 100644 --- a/tests/arm/fuzz_arm.cpp +++ b/tests/arm/fuzz_arm.cpp @@ -144,7 +144,7 @@ public: u32 Generate() const { u32 inst; do { - u32 random = RandInt(0, 0xFFFF); + u32 random = RandInt(0, 0xFFFFFFFF); inst = bits | (random & ~mask); } while (!is_valid(inst)); return inst;