From 3d2503f9aa2593c553e5e79a9b49390b841787d6 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 17 Oct 2020 21:20:52 -0400 Subject: [PATCH] Tests: Run execute on non-Verilator when unsupported test. --- test_regress/t/t_castdyn.pl | 8 +- test_regress/t/t_class2.pl | 8 +- test_regress/t/t_class_extends_this.pl | 6 +- test_regress/t/t_class_name.pl | 6 +- test_regress/t/t_class_param.pl | 6 +- test_regress/t/t_class_static.pl | 8 +- test_regress/t/t_class_static_order.pl | 6 +- test_regress/t/t_class_typedef.pl | 6 +- test_regress/t/t_class_uses_this_bad.pl | 6 +- ...ss_vparam_unsup.out => t_class_vparam.out} | 2 +- ...lass_vparam_unsup.pl => t_class_vparam.pl} | 6 +- ..._class_vparam_unsup.v => t_class_vparam.v} | 0 test_regress/t/t_event_control_unsup.pl | 6 +- test_regress/t/t_event_copy.pl | 6 +- test_regress/t/t_iff.pl | 8 +- test_regress/t/t_mailbox.pl | 6 +- test_regress/t/t_param_avec.pl | 6 +- test_regress/t/t_process.pl | 6 +- test_regress/t/t_semaphore.pl | 6 +- test_regress/t/t_stream_integer_type.out | 133 ++++++++++++++++++ test_regress/t/t_stream_integer_type.pl | 7 +- test_regress/t/t_timing_reentry.pl | 7 +- test_regress/t/t_var_static.pl | 8 +- test_regress/t/t_var_static_param.pl | 8 +- test_regress/t/t_with.out | 34 +++++ test_regress/t/{t_with_unsup.pl => t_with.pl} | 6 +- test_regress/t/{t_with_unsup.v => t_with.v} | 13 +- test_regress/t/t_with_unsup.out | 31 ---- 28 files changed, 249 insertions(+), 110 deletions(-) rename test_regress/t/{t_class_vparam_unsup.out => t_class_vparam.out} (65%) rename test_regress/t/{t_class_vparam_unsup.pl => t_class_vparam.pl} (89%) rename test_regress/t/{t_class_vparam_unsup.v => t_class_vparam.v} (100%) create mode 100644 test_regress/t/t_stream_integer_type.out create mode 100644 test_regress/t/t_with.out rename test_regress/t/{t_with_unsup.pl => t_with.pl} (89%) rename test_regress/t/{t_with_unsup.v => t_with.v} (75%) delete mode 100644 test_regress/t/t_with_unsup.out diff --git a/test_regress/t/t_castdyn.pl b/test_regress/t/t_castdyn.pl index 61eb2deec..2ad4a887d 100755 --- a/test_regress/t/t_castdyn.pl +++ b/test_regress/t/t_castdyn.pl @@ -15,11 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); -# -#file_grep_not("$Self->{obj_dir}/V$Self->{name}__Syms.h", qr/Dead/x); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class2.pl b/test_regress/t/t_class2.pl index 61eb2deec..2ad4a887d 100755 --- a/test_regress/t/t_class2.pl +++ b/test_regress/t/t_class2.pl @@ -15,11 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); -# -#file_grep_not("$Self->{obj_dir}/V$Self->{name}__Syms.h", qr/Dead/x); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class_extends_this.pl b/test_regress/t/t_class_extends_this.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_class_extends_this.pl +++ b/test_regress/t/t_class_extends_this.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class_name.pl b/test_regress/t/t_class_name.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_class_name.pl +++ b/test_regress/t/t_class_name.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class_param.pl b/test_regress/t/t_class_param.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_class_param.pl +++ b/test_regress/t/t_class_param.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class_static.pl b/test_regress/t/t_class_static.pl index 1befb2521..8d48ddb75 100755 --- a/test_regress/t/t_class_static.pl +++ b/test_regress/t/t_class_static.pl @@ -11,13 +11,13 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di scenarios(simulator => 1); compile( + fails => $Self->{vlt_all}, # Verilator unsupported, bug546 expect_filename => $Self->{golden_filename}, - fails => $Self->{vlt_all} # Verilator unsupported, bug546 ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class_static_order.pl b/test_regress/t/t_class_static_order.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_class_static_order.pl +++ b/test_regress/t/t_class_static_order.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class_typedef.pl b/test_regress/t/t_class_typedef.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_class_typedef.pl +++ b/test_regress/t/t_class_typedef.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_class_uses_this_bad.pl b/test_regress/t/t_class_uses_this_bad.pl index 953874c82..45af9e7a6 100755 --- a/test_regress/t/t_class_uses_this_bad.pl +++ b/test_regress/t/t_class_uses_this_bad.pl @@ -8,16 +8,12 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di # Version 2.0. # SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 -scenarios(simulator => 1); +scenarios(linter => 1); compile( fails => 1, expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); - ok(1); 1; diff --git a/test_regress/t/t_class_vparam_unsup.out b/test_regress/t/t_class_vparam.out similarity index 65% rename from test_regress/t/t_class_vparam_unsup.out rename to test_regress/t/t_class_vparam.out index b0b72a8c4..c5a35f922 100644 --- a/test_regress/t/t_class_vparam_unsup.out +++ b/test_regress/t/t_class_vparam.out @@ -1,4 +1,4 @@ -%Error-UNSUPPORTED: t/t_class_vparam_unsup.v:13:40: Unsupported: parameterized packages +%Error-UNSUPPORTED: t/t_class_vparam.v:13:40: Unsupported: parameterized packages 13 | pure virtual function void funcname(paramed_class_t #(CTYPE_t) v); | ^~~~~~~~~~~~~~~ %Error: Exiting due to diff --git a/test_regress/t/t_class_vparam_unsup.pl b/test_regress/t/t_class_vparam.pl similarity index 89% rename from test_regress/t/t_class_vparam_unsup.pl rename to test_regress/t/t_class_vparam.pl index ce380f717..c6e10f70b 100755 --- a/test_regress/t/t_class_vparam_unsup.pl +++ b/test_regress/t/t_class_vparam.pl @@ -10,10 +10,14 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di scenarios(simulator => 1); -lint( +compile( fails => $Self->{vlt_all}, expect_filename => $Self->{golden_filename}, ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; + ok(1); 1; diff --git a/test_regress/t/t_class_vparam_unsup.v b/test_regress/t/t_class_vparam.v similarity index 100% rename from test_regress/t/t_class_vparam_unsup.v rename to test_regress/t/t_class_vparam.v diff --git a/test_regress/t/t_event_control_unsup.pl b/test_regress/t/t_event_control_unsup.pl index f4321c541..be66c40e6 100755 --- a/test_regress/t/t_event_control_unsup.pl +++ b/test_regress/t/t_event_control_unsup.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_event_copy.pl b/test_regress/t/t_event_copy.pl index f4321c541..be66c40e6 100755 --- a/test_regress/t/t_event_copy.pl +++ b/test_regress/t/t_event_copy.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_iff.pl b/test_regress/t/t_iff.pl index 23d25a694..734924e17 100755 --- a/test_regress/t/t_iff.pl +++ b/test_regress/t/t_iff.pl @@ -11,13 +11,13 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di scenarios(simulator => 1); compile( - expect_filename => $Self->{golden_filename}, fails => $Self->{vlt_all}, # Verilator unsupported, bug1482, iff not supported + expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_mailbox.pl b/test_regress/t/t_mailbox.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_mailbox.pl +++ b/test_regress/t/t_mailbox.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_param_avec.pl b/test_regress/t/t_param_avec.pl index 9829facd7..b2836602c 100755 --- a/test_regress/t/t_param_avec.pl +++ b/test_regress/t/t_param_avec.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_process.pl b/test_regress/t/t_process.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_process.pl +++ b/test_regress/t/t_process.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_semaphore.pl b/test_regress/t/t_semaphore.pl index b8b56e6f0..2ad4a887d 100755 --- a/test_regress/t/t_semaphore.pl +++ b/test_regress/t/t_semaphore.pl @@ -15,9 +15,9 @@ compile( expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_stream_integer_type.out b/test_regress/t/t_stream_integer_type.out new file mode 100644 index 000000000..e6d1b0876 --- /dev/null +++ b/test_regress/t/t_stream_integer_type.out @@ -0,0 +1,133 @@ +%Warning-WIDTH: t/t_stream_integer_type.v:118:28: Operator ASSIGN expects 32 bits on the Assign RHS, but Assign RHS's STREAML generates 8 bits. + : ... In instance t + 118 | packed_data_32 = {<<8{byte_in}}; + | ^ + ... Use "/* verilator lint_off WIDTH */" and lint_on around source to disable this message. +%Warning-WIDTH: t/t_stream_integer_type.v:119:28: Operator ASSIGN expects 64 bits on the Assign RHS, but Assign RHS's STREAML generates 16 bits. + : ... In instance t + 119 | packed_data_64 = {<<16{shortint_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:120:28: Operator ASSIGN expects 128 bits on the Assign RHS, but Assign RHS's STREAML generates 32 bits. + : ... In instance t + 120 | packed_data_128 = {<<32{int_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:121:28: Operator ASSIGN expects 128 bits on the Assign RHS, but Assign RHS's STREAML generates 32 bits. + : ... In instance t + 121 | packed_data_128_i = {<<32{integer_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:122:28: Operator ASSIGN expects 256 bits on the Assign RHS, but Assign RHS's STREAML generates 64 bits. + : ... In instance t + 122 | packed_data_256 = {<<64{longint_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:123:28: Operator ASSIGN expects 256 bits on the Assign RHS, but Assign RHS's STREAML generates 64 bits. + : ... In instance t + 123 | packed_time_256 = {<<64{time_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:124:28: Operator ASSIGN expects 32 bits on the Assign RHS, but Assign RHS's STREAML generates 8 bits. + : ... In instance t + 124 | v_packed_data_32 = {<<8{bit_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:125:28: Operator ASSIGN expects 64 bits on the Assign RHS, but Assign RHS's STREAML generates 16 bits. + : ... In instance t + 125 | v_packed_data_64 = {<<16{logic_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:126:28: Operator ASSIGN expects 128 bits on the Assign RHS, but Assign RHS's STREAML generates 32 bits. + : ... In instance t + 126 | v_packed_data_128 = {<<32{reg_in}}; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:128:31: Operator ASSIGN expects 8 bits on the Assign RHS, but Assign RHS's VARREF 'packed_data_32' generates 32 bits. + : ... In instance t + 128 | {<<8{byte_out}} = packed_data_32; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:129:31: Operator ASSIGN expects 16 bits on the Assign RHS, but Assign RHS's VARREF 'packed_data_64' generates 64 bits. + : ... In instance t + 129 | {<<16{shortint_out}} = packed_data_64; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:130:31: Operator ASSIGN expects 32 bits on the Assign RHS, but Assign RHS's VARREF 'packed_data_128' generates 128 bits. + : ... In instance t + 130 | {<<32{int_out}} = packed_data_128; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:131:31: Operator ASSIGN expects 32 bits on the Assign RHS, but Assign RHS's VARREF 'packed_data_128_i' generates 128 bits. + : ... In instance t + 131 | {<<32{integer_out}} = packed_data_128_i; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:132:31: Operator ASSIGN expects 64 bits on the Assign RHS, but Assign RHS's VARREF 'packed_data_256' generates 256 bits. + : ... In instance t + 132 | {<<64{longint_out}} = packed_data_256; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:133:31: Operator ASSIGN expects 64 bits on the Assign RHS, but Assign RHS's VARREF 'packed_time_256' generates 256 bits. + : ... In instance t + 133 | {<<64{time_out}} = packed_time_256; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:134:31: Operator ASSIGN expects 8 bits on the Assign RHS, but Assign RHS's VARREF 'v_packed_data_32' generates 32 bits. + : ... In instance t + 134 | {<<8{bit_out}} = v_packed_data_32; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:135:31: Operator ASSIGN expects 16 bits on the Assign RHS, but Assign RHS's VARREF 'v_packed_data_64' generates 64 bits. + : ... In instance t + 135 | {<<16{logic_out}} = v_packed_data_64; + | ^ +%Warning-WIDTH: t/t_stream_integer_type.v:136:31: Operator ASSIGN expects 32 bits on the Assign RHS, but Assign RHS's VARREF 'v_packed_data_128' generates 128 bits. + : ... In instance t + 136 | {<<32{reg_out}} = v_packed_data_128; + | ^ +%Error: t/t_stream_integer_type.v:150:33: Operator STREAML expected non-datatype RHS but 'byte' is a datatype. + : ... In instance t + 150 | packed_data_32 = {< 1); compile( fails => $Self->{vlt_all}, + expect_filename => $Self->{golden_filename}, ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_timing_reentry.pl b/test_regress/t/t_timing_reentry.pl index cf634ac0e..dec83b460 100755 --- a/test_regress/t/t_timing_reentry.pl +++ b/test_regress/t/t_timing_reentry.pl @@ -19,10 +19,9 @@ compile( make_top => 1, ); -# Will fail, unsupported -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_var_static.pl b/test_regress/t/t_var_static.pl index 1befb2521..8d48ddb75 100755 --- a/test_regress/t/t_var_static.pl +++ b/test_regress/t/t_var_static.pl @@ -11,13 +11,13 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di scenarios(simulator => 1); compile( + fails => $Self->{vlt_all}, # Verilator unsupported, bug546 expect_filename => $Self->{golden_filename}, - fails => $Self->{vlt_all} # Verilator unsupported, bug546 ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_var_static_param.pl b/test_regress/t/t_var_static_param.pl index 1befb2521..8d48ddb75 100755 --- a/test_regress/t/t_var_static_param.pl +++ b/test_regress/t/t_var_static_param.pl @@ -11,13 +11,13 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di scenarios(simulator => 1); compile( + fails => $Self->{vlt_all}, # Verilator unsupported, bug546 expect_filename => $Self->{golden_filename}, - fails => $Self->{vlt_all} # Verilator unsupported, bug546 ); -#execute( -# check_finished => 1, -# ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; ok(1); 1; diff --git a/test_regress/t/t_with.out b/test_regress/t/t_with.out new file mode 100644 index 000000000..5d3e1a04c --- /dev/null +++ b/test_regress/t/t_with.out @@ -0,0 +1,34 @@ +%Error-UNSUPPORTED: t/t_with.v:19:31: Unsupported: with statements + 19 | found = aliases.find(i) with (i == tofind); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:21:23: Unsupported: with statements + 21 | aliases.find(i) with (i == tofind); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:24:28: Unsupported: with statements + 24 | found = aliases.find with (item == i); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:25:20: Unsupported: with statements + 25 | aliases.find with (item == i); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:29:30: Unsupported: with statements + 29 | found = aliases.unique with (id); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:30:32: Unsupported: with statements + 30 | found = aliases.unique() with (id); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:31:33: Unsupported: with statements + 31 | found = aliases.unique(i) with (id); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:32:25: Unsupported: with statements + 32 | i = aliases.or(v) with (v); + | ^~~~ +%Error: t/t_with.v:32:22: Can't find definition of variable: 'v' + 32 | i = aliases.or(v) with (v); + | ^ +%Error-UNSUPPORTED: t/t_with.v:33:26: Unsupported: with statements + 33 | i = aliases.and(v) with (v); + | ^~~~ +%Error-UNSUPPORTED: t/t_with.v:34:26: Unsupported: with statements + 34 | i = aliases.xor(v) with (v); + | ^~~~ +%Error: Exiting due to diff --git a/test_regress/t/t_with_unsup.pl b/test_regress/t/t_with.pl similarity index 89% rename from test_regress/t/t_with_unsup.pl rename to test_regress/t/t_with.pl index ce380f717..c6e10f70b 100755 --- a/test_regress/t/t_with_unsup.pl +++ b/test_regress/t/t_with.pl @@ -10,10 +10,14 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di scenarios(simulator => 1); -lint( +compile( fails => $Self->{vlt_all}, expect_filename => $Self->{golden_filename}, ); +execute( + check_finished => 1, + ) if !$Self->{vlt_all}; + ok(1); 1; diff --git a/test_regress/t/t_with_unsup.v b/test_regress/t/t_with.v similarity index 75% rename from test_regress/t/t_with_unsup.v rename to test_regress/t/t_with.v index 1c9c1a2d7..c0989a818 100644 --- a/test_regress/t/t_with_unsup.v +++ b/test_regress/t/t_with.v @@ -16,9 +16,9 @@ module t (/*AUTOARG*/); int i; aliases = '{ 1, 4, 6, 8}; tofind = 6; - found = aliases.find(i) with (i == to_find); + found = aliases.find(i) with (i == tofind); // And as function - aliases.find(i) with (i == to_find); + aliases.find(i) with (i == tofind); // No parenthesis found = aliases.find with (item == i); @@ -29,9 +29,12 @@ module t (/*AUTOARG*/); found = aliases.unique with (id); found = aliases.unique() with (id); found = aliases.unique(i) with (id); - found = aliases.or with (id); - found = aliases.and with (id); - found = aliases.xor with (id); + i = aliases.or(v) with (v); + i = aliases.and(v) with (v); + i = aliases.xor(v) with (v); + + $write("*-* All Finished *-*\n"); + $finish; end endmodule diff --git a/test_regress/t/t_with_unsup.out b/test_regress/t/t_with_unsup.out deleted file mode 100644 index 62705e280..000000000 --- a/test_regress/t/t_with_unsup.out +++ /dev/null @@ -1,31 +0,0 @@ -%Error-UNSUPPORTED: t/t_with_unsup.v:19:31: Unsupported: with statements - 19 | found = aliases.find(i) with (i == to_find); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:21:23: Unsupported: with statements - 21 | aliases.find(i) with (i == to_find); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:24:28: Unsupported: with statements - 24 | found = aliases.find with (item == i); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:25:20: Unsupported: with statements - 25 | aliases.find with (item == i); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:29:30: Unsupported: with statements - 29 | found = aliases.unique with (id); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:30:32: Unsupported: with statements - 30 | found = aliases.unique() with (id); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:31:33: Unsupported: with statements - 31 | found = aliases.unique(i) with (id); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:32:26: Unsupported: with statements - 32 | found = aliases.or with (id); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:33:27: Unsupported: with statements - 33 | found = aliases.and with (id); - | ^~~~ -%Error-UNSUPPORTED: t/t_with_unsup.v:34:27: Unsupported: with statements - 34 | found = aliases.xor with (id); - | ^~~~ -%Error: Exiting due to