From 7997ba08cb6fb04addbe452fb86c89caeffad1b4 Mon Sep 17 00:00:00 2001 From: Todd Strader Date: Tue, 31 Mar 2020 17:39:23 -0400 Subject: [PATCH] trip equal tests --- test_regress/t/t_type_comparison.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_regress/t/t_type_comparison.v b/test_regress/t/t_type_comparison.v index fea8e543f..07daa232c 100644 --- a/test_regress/t/t_type_comparison.v +++ b/test_regress/t/t_type_comparison.v @@ -93,6 +93,8 @@ module t(); initial begin if (type(shortint) != type(shortint_v)) $stop(); + if (type(shortint) !== type(shortint_v)) $stop(); + if (type(int) === type(shortint_v)) $stop(); if (type(int) != type(int_v)) $stop(); if (type(longint) != type(longint_v)) $stop(); if (type(byte) != type(byte_v)) $stop();