File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ basic_buffer_buffer
2
+ basic_stream_stream
3
+ esimd_regression_dgetrf
4
+ esimd_regression_dgetrf_8x8
5
+ deprecatedfeatures_specconsts1_2_1_specialization_constants
6
+ deprecatedfeatures_specconsts1_2_1_specialization_constants_override
7
+ usm_copy
8
+ usm_fill
9
+ inlineasm_asm_float_add
10
+ inlineasm_asm_float_imm_arg
11
+ kernelparams_union_kernel_param
12
+ subgroup_barrier
13
+ subgroup_broadcast_fp64
14
+ subgroup_info
15
+ subgroup_load_store
16
+ subgroup_shuffle_fp64
17
+ devicelib_built_ins_nan
18
+ regression_commandlist_gpu
19
+ specconstants_2020_handler_api
20
+ specconstants_2020_kernel_bundle_api
21
+ groupalgorithm_sycl2020_sort
Original file line number Diff line number Diff line change @@ -157,12 +157,28 @@ sub gen_suite
157
157
}
158
158
}
159
159
160
+ # Get tests that need double type support
161
+ my $double_test_file = " double_test.list" ;
162
+ my %double_test_list ;
163
+ if (-f $double_test_file ) {
164
+ my $double_tests = file2str($double_test_file );
165
+ foreach my $test (split (" ^" , $double_tests )) {
166
+ $test =~ s / ^\s +|\s +$// g ;
167
+ $double_test_list {$test } = 1;
168
+ }
169
+ }
170
+
160
171
foreach my $testname ( sort keys %{ $tests })
161
172
{
162
173
my @pre_xml = ();
163
174
my $pre_xml_name = " " ;
164
175
165
- my ($group ) = split (" _" , lc ($testname ));
176
+ my $group = " " ;
177
+ if ( exists ($double_test_list {$testname }) ) {
178
+ $group = " double" ;
179
+ } else {
180
+ ( $group ) = split (" _" , lc ($testname ));
181
+ }
166
182
167
183
if ( @strings != 0 ) {
168
184
@pre_xml = grep /testName=" $testname " /, @strings ;
You can’t perform that action at this time.
0 commit comments