From 53e18dec5c965ddda9faf61175ae6ac8145a131b Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 1 Aug 2019 01:02:40 +0100 Subject: [PATCH] add bugreport crossreference --- src/ieee754/fcvt/test/test_fcvt_f2int_pipe.py | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/src/ieee754/fcvt/test/test_fcvt_f2int_pipe.py b/src/ieee754/fcvt/test/test_fcvt_f2int_pipe.py index 82789136..4e01d8c2 100644 --- a/src/ieee754/fcvt/test/test_fcvt_f2int_pipe.py +++ b/src/ieee754/fcvt/test/test_fcvt_f2int_pipe.py @@ -97,12 +97,14 @@ def test_int_pipe_f64_i64(): def test_int_pipe_f64_i32(): # XXX TODO: reduce range of FP num to actually fit (almost) into I32 + # http://bugs.libre-riscv.org/show_bug.cgi?id=113 dut = FPCVTF2IntMuxInOut(64, 32, 4, op_wid=1) runfp(dut, 64, "test_fcvt_f2int_pipe_f64_i32", Float64, fcvt_f64_i32, True, n_vals=100, opcode=0x1) def test_int_pipe_f64_i16(): # XXX TODO: reduce range of FP num to actually fit (almost) into I16 + # http://bugs.libre-riscv.org/show_bug.cgi?id=113 dut = FPCVTF2IntMuxInOut(64, 16, 4, op_wid=1) runfp(dut, 64, "test_fcvt_f2int_pipe_f64_i16", Float64, fcvt_f64_i16, True, n_vals=100, opcode=0x1) @@ -188,22 +190,9 @@ if __name__ == '__main__': test_int_pipe_f64_i32() test_int_pipe_f64_ui16() test_int_pipe_f64_ui32() - continue test_int_pipe_f16_i16() test_int_pipe_f32_i32() test_int_pipe_f64_i64() test_int_pipe_f64_ui64() test_int_pipe_f32_ui32() test_int_pipe_f16_ui16() - continue - test_int_pipe_i32_f32() - test_int_pipe_i16_f32() - test_int_pipe_i32_f64() - continue - test_int_pipe_ui16_f32() - test_int_pipe_ui64_f32() - test_int_pipe_ui32_f16() - test_int_pipe_ui64_f16() - test_int_pipe_ui16_f64() - test_int_pipe_ui32_f64() - -- 2.30.2