-
Notifications
You must be signed in to change notification settings - Fork 4
/
11_23H2.xml
11727 lines (11727 loc) · 753 KB
/
11_23H2.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!--Copyright (c) Microsoft. All rights reserved.-->
<Playlist xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Id="00000000-0000-0000-0000-000000000000" Version="1.0" Name="HLK Version 23H2 CompatPlaylist x64 ARM64" xmlns="http://schemas.microsoft.com/hlk/playlist/2014">
<Test Id="0a0674eb-92d9-4e20-a4f4-2dee3fb5c10f" Name="[Windows USB Device] Basic transfer stress" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="bde9aad5-69f8-4779-bd00-4d6325e13891" Name="[Windows USB Device] Bulk in performance" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f96c3cf0-aa8e-437c-abec-d439a49365c4" Name="[Windows USB Device] Bulk out performance" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="24bf72f8-980a-465f-b0d3-4f4074a479e2" Name="[Windows USB Device] Endpoint 0 descriptor" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8361faa7-e9ee-4162-a028-600087705ca2" Name="[Windows USB Device] Endpoint 0 transfers" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="82d87905-1591-45d5-8521-cb20353c1be5" Name="[Windows USB Device] Endpoint 0 transfers with stalls" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="69a003bc-0691-4449-93b0-e1ef738d71cd" Name="[Windows USB Device] Endpoint 0 transfers with zero-length packets" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d3ced15c-9486-4482-b351-30c8c54e7c03" Name="[Windows USB Device] Full packet loopback on all pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d2944559-85c0-40f7-adc3-6f0895528e2d" Name="[Windows USB Device] Full packet loopback on bulk pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d36a0fda-2af5-4ea6-a105-f6c20ee851aa" Name="[Windows USB Device] Full packet loopback on interrupt pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f25108a4-8889-4e81-b03c-0195da18dbd1" Name="[Windows USB Device] Get MSOS compatible IDs" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8f085730-141a-41a2-8fb6-679baba5f62a" Name="[Windows USB Device] Get MSOS extended properties" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e9c412e2-67ee-4e51-9477-8681c4e93051" Name="[Windows USB Device] Get MSOS string descriptor" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f27ac42d-5d78-4abb-a97a-94e43dfbdd48" Name="[Windows USB Device] Interrupt in performance" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="67acb4e9-2b75-4bb2-80a8-11ac39f67e51" Name="[Windows USB Device] Interrupt out performance" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4643001b-ca53-4b18-a011-364f2566ea03" Name="[Windows USB Device] Large transfer stress" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d1751aa8-8681-461a-a395-62b2bc5bdee6" Name="[Windows USB Device] Maximum packet size loopback on bulk pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="adf6663a-5842-40a4-9514-70ba7364a355" Name="[Windows USB Device] Maximum packet size loopback on interrupt pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9cebed32-c87e-474b-81ce-341a9fed1e00" Name="[Windows USB Device] Performance" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9f5e2fd0-9b74-4080-a09d-492d691e288b" Name="[Windows USB Device] Performance - Bidirectional" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8358de6a-5fad-4455-850a-c72fb210c82a" Name="[Windows USB Device] Short out transfer stress" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9cd8b529-9a8c-4fb8-bb74-8d9ecbee551f" Name="[Windows USB Device] Short packet in transfers on all pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2522de20-146e-40c2-803e-d7ca800374a9" Name="[Windows USB Device] Short packet in transfers on bulk pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cff9af15-7982-4248-be31-7a94d24a3488" Name="[Windows USB Device] Short packet in transfers on interrupt pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="eab895b4-0fed-433b-b894-922c53419200" Name="[Windows USB Device] Short packet loopback on all pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="904c6bb2-3441-4474-af05-378e87835e46" Name="[Windows USB Device] Short packet loopback on bulk pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="51481a78-9ee6-405c-af47-85b3b41f3fd9" Name="[Windows USB Device] Short packet loopback on bulk pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="08ceb293-967a-4f68-8a55-ed460decce26" Name="[Windows USB Device] Short packet loopback on interrupt pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="01759e9b-9b6a-469e-9197-7623f096ad06" Name="[Windows USB Device] Short packet loopback on interrupt pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="bcdf119a-5b49-471c-b1af-03ae0b658705" Name="[Windows USB Device] Short packet out transfers on all pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c003b712-e5fe-4f24-83e6-620126816ff1" Name="[Windows USB Device] Short packet out transfers on bulk pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8b076c77-af6d-444c-a2b5-90416ca2bea9" Name="[Windows USB Device] Short packet out transfers on interrupt pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4be2a62e-b5d2-407f-be45-8f9680f6dda7" Name="[Windows USB Device] Stalled transfer on bulk pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="efe6187c-2a1e-41d1-90a5-82f0c786ac37" Name="[Windows USB Device] Stalled transfer on interrupt pipes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cddb8c4b-31ce-472c-9e83-24128a02c4e3" Name="[Windows USB Device] Support for USB_REQUEST_GET_DESCRIPTOR" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a136014a-3946-4c36-a802-38debe1127e6" Name="[Windows USB Device] Support for USB_REQUEST_GET_INTERFACE" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="88d919d5-0d40-43e1-8b01-f828be722cda" Name="Accelerometer Data Field Properties Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a9fe3485-b2ee-415b-b27c-f4df2823c616" Name="Accelerometer DriverFramework Validation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9840c16c-817e-4445-a2b0-901c2ada874d" Name="Accelerometer Dynamic Range Tests" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6c681440-6b83-40ad-9245-cd61c444894a" Name="Accelerometer Enumeration Property Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e751adbe-031c-405b-9654-cbeb88e79075" Name="Accelerometer Minimum Report Interval Verification Tests" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8b0bb008-c812-4315-bc7e-3d2f64ad66d6" Name="Accelerometer Sensor Data Fields Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b41db84f-f25e-45d4-a39b-b86e887f8bfe" Name="Accelerometer Thresholds Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0861b530-868e-427e-94d1-2068f2e92a9a" Name="ACPI Logo Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="80529cb3-2e8e-41cd-9a50-e8c09158447e" Name="Activity Sensor Data Fields Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6aeafb8b-ad0f-465b-a15e-7a8921be6af6" Name="Activity Sensor DriverFramework Validation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d41f500b-cb36-4abc-b41b-b431ccb3f05e" Name="Activity Sensor Enumeration Property Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="80dfdbad-640c-4134-9c91-abcea72df68a" Name="Activity Sensor History Properties Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="79cf80f6-1352-4d66-9eaa-73a88d72069f" Name="Activity Sensor Minimum Report Interval Verification Tests" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cc77fe44-2709-459a-a679-d1b4b751af23" Name="Activity Sensor Thresholds Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c5212733-193e-43c9-80b8-28344cd1b908" Name="Alpha Blending - FALSE-TRUE 16bpp" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8e6470ec-970a-49bc-9a74-424fb323458e" Name="Alpha Blending - FALSE-TRUE 16bpp (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1f343625-5172-44ef-97b4-efad6f2df048" Name="Alpha Blending - FALSE-TRUE 2-10-10-10" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="92778ac7-2363-406f-86b9-e407d9424712" Name="Alpha Blending - FALSE-TRUE 2-10-10-10 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9b4ef906-1fe4-4a09-9380-b5a6a77b9e59" Name="Alpha Blending - FALSE-TRUE 32bpp" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6c75f5e4-596a-4de7-bcb9-c0632f0da26f" Name="Alpha Blending - FALSE-TRUE 32bpp (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="441c2c81-3614-40c4-ad4f-582f14e8b8b1" Name="Alpha Blending Precision" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4d269682-d5cd-42ef-affc-c1d9830c6d9e" Name="Alpha Blending Precision (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3de66a8e-4579-49a8-9370-788b15027543" Name="Alpha Compare" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f20ccd63-5837-4fc1-859f-9e2f34211030" Name="Alpha Compare (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6cb1a6f3-b695-4e3e-b4d9-8b99c5197df2" Name="Ambient Light Sensor Adaptive Color Preferred Set Dependency Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cf10d38c-101a-4198-bd30-7dadae3dc307" Name="Ambient Light Sensor Chromaticity Set Dependency Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="96790491-5b56-436f-932f-9eab9c8da334" Name="Ambient Light Sensor Color Capable Data Field Properties Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="89d9efbb-1958-4ba9-9356-905a93c98a05" Name="Ambient Light Sensor Color Capable Thresholds Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c847503b-e05d-4c4a-8a00-c7854be3cf0f" Name="Ambient Light Sensor Data Field Properties Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c5798062-993c-423f-b619-6784d10ea890" Name="Ambient Light Sensor Data Fields Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="307ddf39-77ab-457b-8bbe-b426dcfa00bc" Name="Ambient Light Sensor DriverFramework Validation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="136636d1-6e00-45e3-b77a-af7bebe54b6e" Name="Ambient Light Sensor Enumeration Properties Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="79ed5c8e-4802-4d3f-80f4-46cfe5913218" Name="Ambient Light sensor Minimum Report Interval Verification Tests" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="266b12d2-c96c-4522-b835-cf3f2575e3a3" Name="Ambient Light Sensor Singleton Properties Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="451940e4-0168-4ecf-bd96-23b3b1140ebc" Name="Ambient Light Sensor Thresholds Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="824871da-c279-4e94-83c7-f11e07733c8e" Name="Anisotropic" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="04e12829-aba0-41be-b2d2-1bebcb70744b" Name="Anisotropic (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="45e98de1-b855-4405-9c23-f5e9f4ce70e7" Name="Anonymous Pipe" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e84242de-56a9-4e6b-8f8c-ad3f7252cec7" Name="Antivirus Installable File System Filter Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7bf87d0f-e328-4d69-855f-0a0efb469861" Name="AppContainers_Tests" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0adc55ef-9e02-4bfc-a96e-574826d0a355" Name="Arbitrary Clipping Planes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4f770e48-6d29-4184-844b-6f6290b04deb" Name="Arbitrary Clipping Planes (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="33154a5a-2cb9-41c1-a080-854846d02f4b" Name="AtrForDesfire" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="750bac7d-d70b-4603-8c0d-0cd176f53673" Name="AtrForMifareUL" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5c35bc8f-fae1-434b-b842-6b58353696ab" Name="Audio APO - Stress the APO - AudioAPOStressTest" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7e8037ca-8670-4170-8ec8-c7b02b22a7b4" Name="Audio APO - Test IAudioSystemEffects2 and IAudioSystemEffects3 usage from APOs - TestEffectsList" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="50b80d35-5e61-4d91-b201-5f89d67e4a5a" Name="Audio APO - Test WASAPI usage from APOs - TestStreamCreation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b843f67e-0c65-416f-b176-973acb4364b1" Name="Audio APO - Validate effect pack inf schema - TestValidateInfSchema" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="571bd021-64f5-4cd1-9ba4-8abd0857025f" Name="Audio APO - Verify All Formats on Device are Valid - TestCustomFormatSupport" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ed37b03b-f091-4c8d-9edd-fe7ec803bc8e" Name="Audio APO - Verify APO Initializes - TestAPOInitialize" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d327b019-99e4-41bd-bf66-af1a92801dac" Name="Audio APO - Verify APO Streams Data - TestAPODataStreaming" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b9e9f61a-2882-4256-aba8-d57a46e54b76" Name="Audio APO - Verify Frame Count is Valid - TestValidFrameCount" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d1c21041-9080-4990-b6a2-5f718649a3f2" Name="Audio APO - Verify Proper APO Activation and Deactivation - TestActivateDeactivate" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="38ac4d2b-7b59-4c6f-a5cd-ffcddeb414a7" Name="Audio APO - Verify SetEchoCancellationRenderEndpoint - TestSetEchoCancellationRenderEndpoint" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4ff3ba81-2539-4762-9f7d-40547d1dad95" Name="Audio APO CAPX - Test the Logging Framework - LoggingFrameworkTest" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="30f6bee7-2ac9-4434-b1ad-642055b2e871" Name="Audio APO CAPX - Test the Notification Framework - NotificationFrameworkTest" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="09beee82-ca16-47bd-9511-0e51ccb8c425" Name="Audio APO CAPX - Test the Settings Framework - SettingsFrameworkTest" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="392b0972-f7ea-42a7-ba24-6304c3c621db" Name="Audio APO CAPX - Test the Threading Framework - ThreadingFrameworkTest" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b42bd7fc-32b1-4500-8049-a4e00c70eb33" Name="Audio Codec - AC3 Test - Certification - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="91d27525-b5cf-4a7d-a52d-fdcf6a530571" Name="Audio Codec - Audio Logo Test - Certification" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="16ab8841-0aa3-4fe1-8d12-2fc9e27cda91" Name="Audio Codec - Device Power State Transition Test " Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8d6b6f82-3777-4962-b0dc-336cbbaa2ac3" Name="Audio Codec - General Audio Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e115648d-b079-462e-b20f-0d0a7b538aef" Name="Audio Codec - Hardware Offload of Audio Processing Test - Certification" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="59caf630-c395-4b6c-b9b1-b6a618dc12e4" Name="Audio Codec - KS Position Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e1afb964-7c78-441a-a00b-a834e0868480" Name="Audio Codec - KS Topology Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ae5fab5a-51bb-4d66-a675-bb41feb4dae8" Name="Audio Codec - Lullaby Test - Certification - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="76583675-20f6-45e4-8792-8c043a45644a" Name="Audio Codec - SysFX Test - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2cd7d686-b209-4708-8536-fa751f009581" Name="Audio Codec - UAA Test (Manual) - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="36b1763e-0c6b-4a6e-a1cf-f4723b8d947b" Name="Audio Codec - USB Audio Logo Test (Manual) - Certification - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9ffe6819-92f8-4cd8-8174-3f74a6468c8a" Name="Audio Codec - Verify Audio EffectsDiscovery (Manual) - Certification - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ed35b0cd-7562-446f-92a6-6ed0a42ff1c6" Name="Audio Codec - Wave Test - Certification" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="aac6b5ce-ae8d-4b1f-ab49-756e5a6b0a9f" Name="Auto Generation of Mip Maps" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d768c868-4d6e-4d0c-97c8-99ead8ec3be4" Name="Auto Generation of Mip Maps (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="17f3042a-1828-4c97-a5b9-51b9b40bfb01" Name="AV1 Profile0 HW-DRM Video 1" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e8fb70e1-92a7-4670-a190-1449062a3c1c" Name="AV1 Profile0 HW-DRM Video 2" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="568b8a2b-c54b-4705-b8a9-9d64d944c8f5" Name="AV1 Profile0 HW-DRM Video 3" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="de2259bd-daf1-4f38-a3de-8c528cd25d2f" Name="AV1 Profile0 Playback DXGISwapchain Test 1" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2989fea0-6aed-4156-909e-42c17bf48618" Name="AV1 Profile0 Playback DXGISwapchain Test 5" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f82927c3-baaf-4f36-a5d3-536f6bdf6d4a" Name="AV1 Profile0 Playback Test 1" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3ec5b0b4-bb26-4c04-847f-188de794ae66" Name="AV1 Profile0 Playback Test 10" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="69599c52-ab91-4006-b4ad-a94a39e5ddaa" Name="AV1 Profile0 Playback Test 11" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ec98cd54-dc02-49d3-a2c4-02448bfb9d99" Name="AV1 Profile0 Playback Test 12" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6d003577-fbcf-4f76-94db-032c21e26139" Name="AV1 Profile0 Playback Test 13" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1a34f069-37e6-4736-a19d-b734a39d134c" Name="AV1 Profile0 Playback Test 14" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="43bf1bbb-8fb2-40bf-baed-48d4f6bc90b5" Name="AV1 Profile0 Playback Test 15" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="aaa7a4c4-66f2-4279-9266-a04d9cb768d5" Name="AV1 Profile0 Playback Test 16" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b01c846e-2b19-48e4-be52-bd12c7d28421" Name="AV1 Profile0 Playback Test 17" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4cd06c00-f582-4c9f-8f69-ffc760927ea0" Name="AV1 Profile0 Playback Test 18" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="261c7b94-3c5b-47b4-b00e-341d0dafbf4c" Name="AV1 Profile0 Playback Test 19" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1c4fef23-550b-4a98-b8d2-1492416169d4" Name="AV1 Profile0 Playback Test 2" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="37d5b73b-06ac-4810-b6bc-46d5326454f5" Name="AV1 Profile0 Playback Test 20" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b4cacfac-8b0f-449c-845a-8984f73cd287" Name="AV1 Profile0 Playback Test 21" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="51112c8c-b57f-4d2e-9236-c3605247975b" Name="AV1 Profile0 Playback Test 22" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="442b3cc3-1b5b-4442-9c77-97ca3e2d0800" Name="AV1 Profile0 Playback Test 23" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="aec4173b-1cd0-415c-adb0-ae127965c69f" Name="AV1 Profile0 Playback Test 24" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e8c4c7d8-59fc-440e-b22f-5d2a74daf9c1" Name="AV1 Profile0 Playback Test 25" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7a899aab-4603-4c9b-854c-a4c0a72def73" Name="AV1 Profile0 Playback Test 26" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f8379614-9c99-4130-97e7-6b02b14612b4" Name="AV1 Profile0 Playback Test 27" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d58919db-0261-4fb0-8ec0-b62c4e3640b9" Name="AV1 Profile0 Playback Test 28" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d15a2b92-efdb-4319-acb1-d6dc26a5160f" Name="AV1 Profile0 Playback Test 29" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="36a65a04-9f41-4666-b6c8-46074cd45389" Name="AV1 Profile0 Playback Test 3" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4a30a867-ce1e-422a-83e3-ae4ae5d0be49" Name="AV1 Profile0 Playback Test 30" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="15f3ae49-d3a3-420f-b971-5b24220f384b" Name="AV1 Profile0 Playback Test 31" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="afa4ef58-725f-4e1f-a98f-67f8b9c02313" Name="AV1 Profile0 Playback Test 32" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9c9a1de8-aef0-4b60-aa11-9ef3ae206516" Name="AV1 Profile0 Playback Test 33" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="69e6b4c4-b6a1-451a-9ade-d2d7a2cfe673" Name="AV1 Profile0 Playback Test 34" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="73a900fe-c62d-4cb7-8a76-1b77b2dac49f" Name="AV1 Profile0 Playback Test 35" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ce139602-8bce-4d45-8d43-8998ea270889" Name="AV1 Profile0 Playback Test 36" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e194798f-5aee-49fe-92c6-745d7ecc6645" Name="AV1 Profile0 Playback Test 37" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="28476bb1-b179-49c3-94b1-c2aa4ef827ec" Name="AV1 Profile0 Playback Test 38" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b82c2a58-946e-4c7f-8c90-8e4d1d65f373" Name="AV1 Profile0 Playback Test 39" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ada24655-fcb3-4f34-89f7-40fe5747808f" Name="AV1 Profile0 Playback Test 4" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="42e6e5fd-9574-4991-82d1-8a71ad276178" Name="AV1 Profile0 Playback Test 5" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b1ce6f2b-e86b-4354-bde5-0f8d2f731ae3" Name="AV1 Profile0 Playback Test 6" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="92e84100-db74-44df-99e8-91140e1c3aee" Name="AV1 Profile0 Playback Test 7" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fea72265-fec7-4705-ae46-f88de24d8334" Name="AV1 Profile0 Playback Test 8" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e7e1dd7d-6a04-4ddf-8da2-093284e2cdb4" Name="AV1 Profile0 Playback Test 9" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a80efe40-2229-4e9f-accc-0beb2d4306a6" Name="AV1 Profile0 SW-DRM Video 1" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="bb907fec-d22c-4fca-b97e-e86ba378f7ba" Name="AV1 Profile0 SW-DRM Video 2" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1615f714-2f63-4b30-86ae-dc7063ca6021" Name="AV1 Profile0 SW-DRM Video 3" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8ffc804d-29b7-4aab-82fc-cb9ea4e73e63" Name="AV1 Profile0 SW-DRM Video 4" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="85e086bd-e74e-4b71-9956-038e5ca30d8f" Name="AV1 Profile0 SW-DRM Video 5" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f0d3552d-c1b5-45b8-93e4-6dd71cbc7209" Name="AV1 Profile0 SW-DRM Video 6" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="dacbc738-8e27-462c-ac55-b09967cdbfbf" Name="AV1 Profile0 SW-DRM Video 7" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3818d657-4219-413f-8e09-679c0b65c0e7" Name="Barometer DriverFramework Validation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="003ff501-f18e-4f60-8432-f2748123afb1" Name="Barometer Sensor Data Field Properties Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d2c1186c-ea6a-427e-abd8-6fdaccc6b838" Name="Barometer Sensor Data Fields Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="91bdc66f-2b7a-4763-9b34-73af4d9a1c70" Name="Barometer Thresholds Verification Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="84df33c2-8c01-4344-9138-8588daebdf6a" Name="Basic Rasterization" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5489a2db-19c7-4bd0-84f7-2769908f4f88" Name="Basic Rasterization (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="aee4bbc8-7d7c-43f0-8d4e-5d9725f0c3fb" Name="Basic Rasterization 2-10-10-10" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ecbb8e34-2764-4025-b378-e4d3ddc57840" Name="Basic Rasterization 2-10-10-10 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="954cf796-a640-4134-b742-eaf0ed2663ff" Name="BitLocker check after firmware update" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="39d176bc-059b-43aa-ae26-e530bdec23bf" Name="BitLocker Drive Encryption USB BIOS Logo Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5aac52da-a57c-4a12-aaac-de878a62bb08" Name="BitLocker Tpm And Recovery Password tests for AOAC devices with PCR[7]" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ce9e5b64-8903-4025-bccf-a99d65663cf8" Name="BitLocker Tpm and Recovery Password tests for non-AOAC devices for Legacy PCRs" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8c7a62bb-7f02-4a16-b37d-711cc9026e17" Name="BitLocker Tpm and Recovery password tests for NONAOAC devices with PCR[7]" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6db734d1-6bdc-4da5-87f9-51e0948e21b1" Name="BitLocker Tpm+PIN+ USB and Recovery Password tests" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4d331b4f-44f4-41f1-b392-795e5d17d396" Name="Bluetooth - 4LeSpecification (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="38f8b917-00d4-4394-8300-e49e11d71340" Name="Bluetooth - 4LeSpecification (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="79f8ff32-d2ba-4191-b985-2fe332053912" Name="Bluetooth - Audio - Check Sideband DDI" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b022e32f-7b15-4576-87ef-d9debe901e49" Name="Bluetooth - Audio - Check Supported Codecs" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f27d2c04-cb3d-4505-98fa-37f2df622c46" Name="Bluetooth - Audio - Offload path used" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6b04475b-4e30-435c-9c67-9174a4b40de2" Name="Bluetooth - Audio - Power cycle the sink device while playing music tone with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="797b61ca-d822-4f68-8e6a-f3a60c14747f" Name="Bluetooth - Audio - Short constant music tone with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b48d24f6-6afc-4f0b-a625-3ef598aaab78" Name="Bluetooth - Audio - Sink decrease music volume with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="49a416af-eaac-40e1-93fc-d090c0bf116c" Name="Bluetooth - Audio - Sink device disconnects and reconnects while playing music tone with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b7b59533-1c86-4295-adb1-6273ce1bda9f" Name="Bluetooth - Audio - Sink increase music volume with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4592c2f1-6a08-4822-a8c6-a4b3ea634854" Name="Bluetooth - Audio - Source decrease music volume with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1071a4c0-3bbb-4714-b0a1-b45b7fd7eefe" Name="Bluetooth - Audio - Source device toggles music tone with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5cad15ac-ca17-423d-bc81-e65583477470" Name="Bluetooth - Audio - Source increase music volume with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="839c58b9-de70-45ff-bbaf-6bcab43e4eb3" Name="Bluetooth - Audio - Source radio disabled and re-enabled while playing music tone with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a4ccf137-9da5-408c-8783-345bf3852fa8" Name="Bluetooth - Audio - Voice interrupt music with A2DP offload" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c4a83906-e8da-49e5-8b82-1ea3b6cfa6a7" Name="Bluetooth - Auto Connection Establishment Procedure (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9fb0bbd2-8772-4b6f-905f-9694a0f1877d" Name="Bluetooth - CIS Establishment Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1113fc6f-0cdf-4a80-8fd6-300a1f14e908" Name="Bluetooth - ConnectedStandby1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="881738ca-7e36-49c7-b7f4-fb88c7ff2210" Name="Bluetooth - Hardware Offload Limit (Dev and Int.)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4ed42f21-e8dd-4f76-883e-9b20a30b3cde" Name="Bluetooth - HciExtension1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2887815e-4bec-44c8-b7a5-a78f0a861a78" Name="Bluetooth - HciExtensions - Enhanced Controller Diagnostics (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="37966e33-0e5d-4085-ba71-572e3c56eb34" Name="Bluetooth - HciExtensions (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="bba0b580-51c2-40e2-9626-c26a6e25d2cb" Name="Bluetooth - HciExtensionsV2 (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="09a2ea81-94c6-416d-a27e-c040d70987b9" Name="Bluetooth - Initiate platform-level device reset" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5b44ffb4-52a2-4ff8-a2fe-5bc22810e273" Name="Bluetooth - L2CAP Performance (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b1d09d86-ec55-41a8-9b0c-3ba67a99cff4" Name="Bluetooth - LE Channel Classification support" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d2b3ef2a-6149-472c-a449-d398b469a6e6" Name="Bluetooth - LE Connected Isochronous Streams support" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6cc46c3b-d744-4aba-99ba-fecd1b985201" Name="Bluetooth - LE Enhanced Connection Update support (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5dc1dff0-ec53-4931-a06b-7ee7c82ef5e4" Name="Bluetooth - LE Power Control support" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="416bddf4-a01d-4c83-943f-8cfd42e34d50" Name="Bluetooth - LE Supported States - Legacy Minimum Requirement (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4609ecd5-8f82-487a-b44b-21d16d13eb40" Name="Bluetooth - LE Supported States - Peripheral Role Support (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b11e1107-327b-433e-8b54-b7f65223fe40" Name="Bluetooth - LE Supported States - Scatternet Support (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4a309018-ca26-486b-a309-0fa455d00d20" Name="Bluetooth - LEExtendedAdvertising (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e293dfde-1181-44b7-bf80-c4e48f31c501" Name="Bluetooth - LEWhiteList1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="609ba535-2a4e-48be-8d38-117de9d419fe" Name="Bluetooth - Microsoft Hci Extensions Monitor Advertisements V2 support" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="43f72e80-f4c7-4d27-b3a8-ff64438d7c4e" Name="Bluetooth - MicrosoftBluetoothStackPresent1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7aa39fe4-98d4-45ca-a89b-c514096bf48e" Name="Bluetooth - NoBluetoothLEFilterDriver1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c5bc4b10-9311-46cd-a7fd-fd4c35ac382c" Name="Bluetooth - NonUsbScoSupport (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6c3de351-87f1-44b3-bf15-a0de2ca1bfa2" Name="Bluetooth - NonUsbUsesMicrosoftStack1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="66574c98-3b2d-41ba-9799-88aaa8dca9aa" Name="Bluetooth - OnOffStateControllableViaSoftware1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9358c22d-4de3-4630-963a-5af123f5fcc4" Name="Bluetooth - OnOffStateControllableViaSoftware2 (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f2eb7d4d-eee3-4616-9351-6f5e78e342c3" Name="Bluetooth - Platform support for Error Recovery" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ecef3558-c7c5-430a-8373-5bb99a21700e" Name="Bluetooth - Radio supporting Error Recovery is an internal device" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a418fd87-d6af-4038-a136-4f24ce11238b" Name="Bluetooth - SimultaneousBrEdrAndLeTraffic (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2ab4cd6a-31f0-43cc-b729-b38521608266" Name="Bluetooth - SimultaneousBrEdrAndLeTraffic1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="10340e73-dd9c-4d30-9904-046e3f322cd7" Name="Bluetooth - SpecificInformationParameters1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1dd92d07-98f8-4ea7-9355-b5aed48258c8" Name="Bluetooth - Support at least 16 bytes encryption keys" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c2eb3fa1-9158-4d22-86a3-de40622d1cfb" Name="Bluetooth - Support for remote public key validation (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="602d4ba9-c8d8-4168-a5e4-a4b9afcdfd14" Name="Bluetooth - SupportsBluetooth21AndEdr (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="203eae05-103d-4937-8826-cb175557805f" Name="Bluetooth - Test_UsbDescriptorBringUp" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b1a89b7d-e692-4025-9063-95519b03e16b" Name="Bluetooth - UsbScoDataTransportLayer (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8a8b3667-3402-4ae3-8da1-3081a81a7f44" Name="Bluetooth - UsbTransport - AlternateSetting6 (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1660c636-710c-462a-9920-7557fd55d230" Name="Boot Test (LOGO)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3b66d9ef-fac0-4215-814c-e98f5e6ed63c" Name="Boot Test (SYSTEM)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fb3cc9d2-e8bf-4c51-b5a1-cd1d60a65689" Name="Brightness Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6949d144-dcb0-42dd-90a0-e56d2d17c4ad" Name="Brightness2 Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b49914ff-24a0-42dc-92fb-858c12a95a73" Name="Bump Env Map" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="41995634-3418-46ae-8e76-2e0c191dd64c" Name="Bump Env Map (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6e82a341-1f64-47a3-ad1f-8d927a0ef35e" Name="Camera Driver Controls Device Test - CacheUVCControl - Check if supports any ext controls" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="62ec3a8d-6329-4077-babe-aeabaac5cc84" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Log all profiles" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9df00d12-b83f-43ca-a860-3f522847d71c" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_BalancedVideoAndPhoto enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0d53d14a-0c5d-4980-8588-9fdadce624bb" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_CUSTOM enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c8f78d4a-b6c7-4ad1-b6a6-d9b53dc0cfdb" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_CUSTOM enum all, photo and preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f1eb9979-f0c3-4e80-9b3a-e59ea2d260f2" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_HighQualityPhoto, enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0c0f2bc9-64ec-4051-8b72-6dae8d561e05" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_VideoConferencing enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1f679093-267b-4711-9e16-7027884f055d" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_VideoRecording enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a17cd6c3-2f72-49c5-b59c-6358033e67a8" Name="Camera Driver Controls System Test - ADVANCEDPHOTO - Iterate through possible settings take Photo and Preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9709f7c4-25cb-476c-9efe-35a7228934ac" Name="Camera Driver Controls System Test - ADVANCEDPHOTO - Verify correct Pin" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4d4038c3-9ba9-4362-b471-4a1ccfbe2c8a" Name="Camera Driver Controls System Test - ADVANCEDPHOTO - Verify Default setting" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="73d05b0b-3c9e-4ef7-95b6-749c97bb1dc2" Name="Camera Driver Controls System Test - ADVANCEDPHOTO - Verify defaults" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="837e8fa1-2890-4f70-ba04-4ec9ca923ece" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_AUTO - Verify Take Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8d7a590e-d169-465a-b3fe-93221ec32b19" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_AUTO - Verify Take Photo with record" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c421468b-851c-406e-9bc3-93bf7d89236f" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_FNF - Verify Take Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3ea67118-0b4f-4dfa-8742-de1fedb12e6a" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_FNF - Verify Take Photo AUTO" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="add78bb2-238b-4c2e-9e6f-a1a36643a408" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_FNF - Verify Take Photo with record" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3aaa73fd-98fa-4b36-be9e-1adc57757fe2" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_HDR - Verify Take Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="be84130c-4fa5-4070-9e87-83d451ef4e04" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_HDR - Verify Take Photo AUTO" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4cc09ac9-c438-4133-9eaf-c950c04753d5" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_HDR - Verify Take Photo with record" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b0bbd51b-94f8-44ba-88a0-66c64411be48" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_ULTRALOWLIGHT - Verify Take Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5eccdfd7-7e48-4c9b-9edd-71fcd8964f0e" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_ULTRALOWLIGHT - Verify Take Photo AUTO" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="eb8dd7ac-b21e-4099-ba98-705492576dfa" Name="Camera Driver Controls System Test - ADVANCEDPHOTO_ULTRALOWLIGHT - Verify Take Photo with Record" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="aa401d95-b928-4dc9-8f55-38f9792df84e" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify Blur Mode" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="034e7472-1e4a-4f43-ab40-24e59c25ba72" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify Blur Mode Switch Streaming" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4176113e-3c1d-4cf9-b249-14955cc2fa2f" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify Blur Mode Switch Streaming Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fbaa4e85-97f8-4eb8-8f84-f38113fef1f5" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify Mask Mode" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a6ede9b5-1de3-4553-b082-f40470629ad4" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify Mask Mode Switch Streaming" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1026430e-2661-421d-829e-51319baca5a5" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify Mask Mode Switch Streaming Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="489c5dcd-e07d-4fbb-a586-4bb20df39aaf" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify ShallowFocus Mode with Mask" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="faa8eb4a-74df-40fa-90a2-f397a52e90f4" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify ShallowFocus Mode with Mask Switch Streaming" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="22102db9-a380-4661-a951-4700eee861fe" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify ShallowFocus Mode with Mask Switch Streaming Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c9db5dce-21c1-4bd7-9efe-2c08555a3a1d" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify ShallowFocus Mode without Mask" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ab43427d-90be-47dc-87c9-7bbbf116e629" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify ShallowFocus Mode without Mask Switch Streaming" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cc9f7c04-e0e6-4dd2-ae62-918ec17d543c" Name="Camera Driver Controls System Test - BackgroundSegmentation - Verify ShallowFocus Mode without Mask Switch Streaming Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4a8497c7-2fad-4cdd-8d70-445a40d85aa2" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Log all profiles" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="10b647cf-3239-4006-ad55-254504653ab4" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Photo Sequence" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cec85384-0c6b-4d4e-aee4-bf49d8467910" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_BalancedVideoAndPhoto enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="36214133-7de3-4fbf-b6a5-7e91dcc0372e" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_CUSTOM enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0e87ca9e-ab1e-4072-8d60-6e8cb2765474" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_CUSTOM enum all, photo and preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="72a21ab5-a93b-4caa-98db-7aeb97987bd0" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_HighQualityPhoto, enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ede4aaf9-7218-4e64-8348-cf1eb7c3006c" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_VideoConferencing enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="651cd315-fbff-45da-8e56-766b34b483f1" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_VideoRecording enum all" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fa8224d9-d14c-4f3b-81c4-025765dbc902" Name="Camera Driver Controls System Test - CAMERAANGLEOFFSET - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="12e4e2b8-5726-4a7c-8892-807faef2eb8d" Name="Camera Driver Controls System Test - Digital Window - Verify Config Mediatypes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />