From: Jacob Lifshay Date: Sat, 13 May 2023 01:04:39 +0000 (-0700) Subject: ignore FPSCR in fcvt js test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=815bb903449cf3effe852d18e0245690939d1ab2;p=openpower-isa.git ignore FPSCR in fcvt js test --- diff --git a/src/openpower/test/fmv_fcvt/fmv_fcvt.py b/src/openpower/test/fmv_fcvt/fmv_fcvt.py index 674bd96e..51de74af 100644 --- a/src/openpower/test/fmv_fcvt/fmv_fcvt.py +++ b/src/openpower/test/fmv_fcvt/fmv_fcvt.py @@ -20,6 +20,7 @@ class FMvFCvtCases(TestAccumulatorBase): fprs[0] = inp_bits e = ExpectedState(pc=4, int_regs=gprs, fp_regs=fprs) e.intregs[3] = expected + e.fpscr = None self.add_case(Program(lst, False), gprs, fpregs=fprs, expected=e) def case_js_toint32(self):