From a105fdf731998129ca4b89f2779061f46841fbc9 Mon Sep 17 00:00:00 2001 From: Todd Strader Date: Tue, 31 Mar 2020 16:57:19 -0400 Subject: [PATCH] More tests are working --- test_regress/t/t_type_comparison.v | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_regress/t/t_type_comparison.v b/test_regress/t/t_type_comparison.v index 7421e06ab..fea8e543f 100644 --- a/test_regress/t/t_type_comparison.v +++ b/test_regress/t/t_type_comparison.v @@ -112,10 +112,10 @@ module t(); if (type(ETYB) == type(byte)) $stop(); if (type(BYTE) == type(UNSIGNED_BYTE)) $stop(); if (type(MEM_BYTES) != type(MY_MEM_BYTES)) $stop(); -// if (type(MEM_BYTES_PACKED) != type(MY_MEM_BYTES_PACKED)) $stop(); -// if (type(NIBBLES) == type(MY_BYTE)) $stop(); -// if (type(MD_ARY) == type(MD_ARY_TOO)) $stop(); -// if (type(MY_CHAR) != type(byte)) $stop(); + if (type(MEM_BYTES_PACKED) != type(MY_MEM_BYTES_PACKED)) $stop(); + if (type(NIBBLES) == type(MY_BYTE)) $stop(); + if (type(MD_ARY) == type(MD_ARY_TOO)) $stop(); + if (type(MY_CHAR) != type(byte)) $stop(); // TODO -- the rest // TODO -- case equal/not equal, ===, !=== // TODO -- test associative arrays