-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path11_22H2.xml
11724 lines (11724 loc) · 753 KB
/
11_22H2.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"?>
<Playlist xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Id="f075d4e1-be64-48b2-91fc-7447cd1fcdba" Version="1.0" Name="HLK Version 22H2 CompatPlaylist x64 ARM64" xmlns="http://schemas.microsoft.com/hlk/playlist/2014">
<Test Id="08a7c6d7-fab0-4bd8-ae4f-75e53cce4509" Name="System Audio - Hardware Offload of Audio Processing Test " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="a9d71d49-ba51-4fbf-a0b2-3eb11b689565" Name="System Audio - Device Power State Transition Test " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="e3dab242-deb8-4248-8554-df3ea9d95f83" Name="System Audio - SysFX Test - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="facb4182-a34d-47b5-9a4d-16ae7758739a" Name="System Audio - Wave Test " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="ce685f4e-fbbb-439d-b0b9-6346753b6e71" Name="System Audio - KS Position Test " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="16ace5c5-6eff-4169-beed-81f5cf75357a" Name="System Audio - AC3 Test - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="b3d7507c-9051-4eac-be04-9276a6ccad53" Name="System Audio - Audio Logo Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="e5964040-9ebe-4003-8ef3-5bd9966dcfbb" Name="System Audio - KS Topology Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="634e1f2a-de4f-4043-aa3c-ac43da164d11" Name="System Audio - Verify Audio EffectsDiscovery (Manual) - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="03197dae-d7ac-4b0e-9fad-d4b35d998988" Name="System Audio - Lullaby Test - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="d3b9db9c-193b-473c-9c6b-5b1c719fba31" Name="System Audio - UAA Test (Manual) - Desktop" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="087a285b-19a8-4581-a41f-56be931d8ea3" Name="Registry Callback Tests" 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="5e9fd15a-7ffa-4caf-94eb-af2541ef2ede" Name="Named Pipe State" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2e0f2f69-abbb-47ac-a49b-e4e991f522a9" Name="Named Pipe Basic" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="097e27fe-f9c5-4065-af32-a11c104c3012" Name="Named Pipe Kernel Security" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e3bcbd3f-3e9c-484a-a587-3c081cb28f7a" Name="Named Pipe Reject Remote Clients" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d1879df6-9f02-4ded-8e05-64279703d71b" Name="Mailslot Basic" 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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="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="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="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="dccadddb-5d0c-471f-a05c-2584ed8ef41b" Name="DE OOBE_EOW Sequence 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="5b44ffb4-52a2-4ff8-a2fe-5bc22810e273" Name="Bluetooth - L2CAP Performance (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="38f8b917-00d4-4394-8300-e49e11d71340" Name="Bluetooth - 4LeSpecification (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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 x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 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="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="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="e8bc35d1-8a28-4077-bb5f-24573e19efc8" Name="Txfs2" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="20c21f21-de9b-4ef4-94a5-56fe4cfffb49" Name="ReparsePoints" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="14b230f3-7eee-437e-ab2f-375b200de6f3" Name="Installable File System Filter Test" 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="a1fb1fda-1fc1-41de-9626-bf88defeb746" Name="File IO 2 Tests" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="750f58e6-a459-4b46-b3a5-4dc7978d8e22" Name="Mapped File IO 2" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="eba8e46b-d8de-45a9-bdaf-8107b6d0731c" Name="Object ID test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3d717052-7804-4de7-b097-a5e30b6bb7e5" Name="Oplocks Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="69f18ed7-7f1e-42d9-9c32-29ae98e38089" Name="Syscache Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2b5581b0-4b2e-485e-978a-06d5aa30e3c2" Name="Scrub Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1fd837c2-db8b-4e8c-a189-0ee8daff7173" Name="DF - Embedded Signature Verification Test (Tuning and Validation)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e903a10b-8c9f-4a67-8f54-0e0ee7251cf2" Name="WDDM HPD Notification Test (Manual)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e8c8edb5-1b7a-4db2-bea8-961aa3eb547d" Name="WDDM Bit Flip - Invalid Param First Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="1ce023a5-83b2-4357-8ab8-e3692d81c4df" Name="WDDM BVT2 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2e72b0b6-55d4-4247-8be9-30e8b5d131ea" Name="WDDM Primary Surface (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="10b2bc42-88f2-4b60-b1d0-a5f43a49aa0f" Name="Windows System Check For WDDM" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="107dded8-f711-47ec-8b8e-fc1d3eee4699" Name="WDDM Unmap Segment to DummyPage Check" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3c3c1106-192a-4285-b7fa-ed57c3764096" Name="WDDM WSSections" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ee64b2e6-55e0-468e-bf19-274281e0fa0f" Name="WDDM RotateBlt Window GDI (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c93c5e20-875e-4891-beb9-2717efc4b8ec" Name="WDDM RotateBlt Window GDI" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1f3f5c09-2615-427b-b717-fd64c579a28b" Name="WDDM RotateBlt Window D3D (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="01d2bed1-2596-4df1-85a6-3f2eb7c840ff" Name="WDDM RotateBlt Window D3D" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6c6a6d47-458b-4ea9-99fe-788227202950" Name="WDDM RotateBlt Full Screen ColorFillPresent (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0c8d9c13-56b6-4252-9b7f-fefcae7a7521" Name="WDDM RotateBlt Full Screen ColorFillPresent" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9c0c3365-64ec-445a-b92b-43722c6c842d" Name="WDDM LockConfirm (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="23ddaa2b-110a-4b61-90da-62b97818281d" Name="WDDM LockConfirm" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="21d1ef5b-228d-4fac-9008-c605ccb120bc" Name="WDDM Fuzzer Misc- Invalid Param" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="1a58349b-1999-4414-95e1-c1df82483247" Name="WDDM Fuzzer Allocation- Invalid Param" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="8fa8a507-3867-4319-b7a3-c0460e47a819" Name="WHQL FPO optimization check for kernel video driver(s) (1.2)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="352dea37-3acd-4af3-8ca5-aa7402f6f692" Name="WDDM CCD Test for verifying only one internal target active on GPU" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="b97fb72d-0f43-48e1-82e3-3af4c5bc96ca" Name="Test for EDID Requirements (Manual)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="81e6d771-cd68-452a-a065-1ebd60f2f526" Name="WDDM Blt - Depth" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7d05441b-5a47-4ff9-9483-ec03e9f6926c" Name="WDDM Pass Through (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6cf4642d-c550-485c-98ae-e08d9621bc74" Name="WDDM Sync Test (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e9ee1e95-a086-41a5-b075-3e32a6c98586" Name="WDDM Blt (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9820c83e-f640-4ebe-a0fe-67a774ee3b95" Name="WDDM Cross Processor (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="308a3e9c-7156-4a27-a31e-58792e250b7f" Name="WDDM Process Callout" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="19500b44-f67a-478c-a856-534b8389ebdf" Name="WDDM Locksmith" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f0e29b06-6b0b-4dae-97d4-1ff1e1d56a63" Name="WDDM Pass Through" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f8507670-c532-4d36-ac3b-a5bdc14e30cd" Name="WDDM BVT2" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="11db634c-6fa6-4733-ad91-82eedc544add" Name="WDDM PresentStats - Present Statistics Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="12b4814c-7d34-47f8-9b91-5b86ce73f610" Name="WDDM Sync Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cb8ff2b2-6604-4388-8cff-4e77fd80d8f3" Name="WDDM Primary Surface" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9fb4aa59-8486-467b-9431-05a5640d460d" Name="WDDM Blt - DepthFill" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="327aef01-95b1-4a24-afb4-ae93ec9a10ba" Name="WDDM Dead Lock" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b66817a2-bed9-4672-9d58-02d128afbee4" Name="WDDM Fuzzer Command Buffer- Invalid Param" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="3311715f-9500-4cf4-a3ca-81497e222533" Name="WDDM Handles - Invalid Param First Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c519159b-d59d-42c3-a6af-65d260095098" Name="WDDM ModeChange" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a3a9aab0-484b-44b9-8e0e-c8873f2b4797" Name="WDDM Blt" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e7fd193d-bc2c-4927-8ec0-ec7b0f10c0b2" Name="WDDM Max Contexts" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="acab9b2b-907a-413e-95cf-5e85c2630d98" Name="WDDM Toaster - Invalid Param First Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="08480dda-2719-47be-903f-da19e6ca479d" Name="WDDM Blt - Stretch" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="985a614d-a5bf-4a0e-86ef-683ac52d7f10" Name="WDDM ManagedPrimary" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c1084117-97fb-4761-99bb-8fa61d82abf2" Name="WDDM Pass Through - QueryResidency" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d2caf4f2-73f2-48ec-a03b-b6870ba8d518" Name="WDDM FlipQueue" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="7ce96c39-f168-48d5-9749-c9f8239cca2f" Name="WDDM ManagedPrimary (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6b785baa-eca5-45df-847e-4657e11955ba" Name="WDDM Pass Through - QueryResidency (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="55627af7-086a-48c4-8c19-dc98d327a69a" Name="WDDM Blt - Depth (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="85bc85b5-cf3e-4773-a9fa-de73c1475cf7" Name="WDDM PnPStop Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ad8cb91c-16c1-4ef0-a29b-97a4e371ecc5" Name="WDDM Blt - DepthFill (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="90e50d12-d324-4e27-af4e-131285514e8e" Name="WDDM Blt - Stretch (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ac56dc42-b8d4-4eac-97c1-0b3b053730df" Name="WDDM Sync - VolBlt Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="db5ce247-dbae-4e1e-b738-0ef0139d0dbc" Name="WDDM Pass Through - Lock" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="52b1506d-3a66-4d7e-86b2-61b79cab5288" Name="WDDM Pass Through - Lock (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="eed8b4b3-3b36-4d83-884e-155587255432" Name="WDDM Sync - VolBlt Test (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7cbc46ba-9b13-4970-aba4-7ca1f585668f" Name="WDDM Overlay" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="49f5abb5-4de7-4272-a338-a14871e67fad" Name="WDDM Overlay (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b2fdcf57-2596-47f1-9cbd-900ddd991074" Name="WDDM Cross Processor" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="58614a1c-0938-4d0a-80fb-a0332f135762" Name="WDDM GammaRamp" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="506b5487-232f-410a-961d-509d90a98561" Name="WDDM Coherency" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="72a45438-046a-429a-8590-4fe8a88f12c7" Name="WDDM Sch_Stress" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e798529c-2481-4fae-ae47-09ee89af4aca" Name="WDDM ModifyVAD" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d8fd9f76-7273-4133-a185-ca979886bb45" Name="Graphics Device Runtime Power Management Component Validation " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="bd833c4a-00c2-44a7-97e2-ee720b60d251" Name="WGFVidMMWDDM1_2 - OfferReclaim - FL9.1" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e5e1ba2a-49cc-488f-856b-b4fa2910c2ac" Name="WGFVidMMWDDM1_2 - OfferReclaim - FL10.0" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d33f52c7-98d1-4d68-92fb-00e7b69e14df" Name="WGFVidMMWDDM1_2 - UMDLogging - FL9.1" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ed79fcb1-1596-4718-be99-8697085b1287" Name="WGFVidMMWDDM1_2 - UMDLogging - FL10.0" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b36f16ef-b4c7-4d78-b05b-b085a3157483" Name="WDDM PnPStopModeSwitch Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="be28b2a8-2d73-4f1e-aa5f-5916be069380" Name="WDDM PnPMultiModeSwitch Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2a1f4090-38e2-4b2b-a82f-c2d8d610b6ea" Name="WGF11 -- Multi-threading -- two-way stress test - immediate context (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2ad364ea-73db-47b6-a627-dea13e7c17d2" Name="WHQL FPO optimization check for kernel video driver(s) (1.1)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b4a7d704-f630-4149-bacb-49e40f3ec2a0" Name="OptStandby - Video Memory Purge and Resume" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="e1dd9de6-d5cc-48e5-b889-dd0ce35fd918" Name="Preempt - Scheduler WLK Validate non-zero preemption values for WDDM1.2 hardware" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="366d25c0-9e10-4644-b57c-643f0d5f273c" Name="TDR2 - Long Running Compute Packet Expect TDR (Interactive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1a62a186-4a45-4d8d-ae57-86b63d9cb036" Name="TDR2 - Long Running Compute Packet Expect TDR (NonInteractive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1f5f0483-62a9-42d6-ae37-ebda3ffd3413" Name="TDR2 - Long Running Compute Packet Expect TDR (PoliceDdi)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5c53f986-ee9f-4717-850c-dfe1a3e5a65c" Name="TDR2 - Long Running Compute Packet Expect TDR (PoliceDdi, NonInteractive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d41d1929-ca3f-4967-87c9-e388988b2650" Name="TDR2 - Long Running Graphics Packet Expect NO TDR (Interactive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="bd226bb7-2f8f-4cf5-87bf-9d9bd1f3c4f3" Name="TDR2 - Long Running Graphics Packet Expect NO TDR (Interactive, PoliceDdi)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a0f06bc3-82d6-4000-8057-9fa2549c473a" Name="TDR2 - Long Running Graphics Packet Expect TDR (Interactive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d5b547fa-a7df-4492-b1d7-207c4930fbf6" Name="TDR2 - Long Running Graphics Packet Expect TDR (NonInteractive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f11a1533-35bb-42fe-b67c-31a825679574" Name="TDR2 - Long Running Graphics Packet Expect TDR (PoliceDdi)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3872a37e-f42b-4482-88a7-d0ef941c8326" Name="TDR2 - Long Running Graphics Packet Expect TDR (PoliceDdi, NonInteractive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="19b0c579-036f-411b-8c15-882388657f28" Name="TDR2 - Multiple TDR Compute Lockout and Recovery Test (Enumerated Adapter)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ba2fa618-d344-4c90-bd27-f52459c236f6" Name="TDR2 - Multiple TDR Compute Lockout and Recovery Test (NULL Adapter)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="50353b03-236f-4cd0-ae30-34523342d769" Name="TDR2 - Multiple TDR Graphics Lockout and Recovery Test (Enumerated Adapter)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="83406522-6127-4bd1-8ae5-809556767703" Name="TDR2 - Multiple TDR Graphics Lockout and Recovery Test (NULL Adapter)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="575d868d-b89a-48f7-b356-1c9f8c371a6f" Name="TDR2 - Standard Two Device Test Graphics (Uninterrupted when another app TDRs)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b5442f83-eb40-421d-a4a2-682d3cf0a495" Name="TDR2 - Long Running Compute Packet Expect NO TDR (Interactive, PoliceDdi)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7fb1fa3e-d6ce-42bc-b9c6-c24ba1255616" Name="TDR2 - Long Running Compute Packet Expect NO TDR (Interactive)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4dea15f0-ac8a-4535-bb8f-2316d75f773e" Name="TDR2 - Large Payload Penalty Compute Application Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b0dc780e-5a71-45c1-8dce-93ba311cf16c" Name="TDR2 - Large Payload Penalty Graphics Application Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a635f1f2-5a43-4264-a667-ce6cd1a43338" Name="Verify Post Device Supports Display And Render" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="fe14601e-d04c-4ad8-af8f-8fa09618a03d" Name="Verify Device Driver Is WDDM" 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="22a42a7b-0ff4-4777-a330-7b5ab564a89a" Name="WDDM Handles - Invalid Param Second Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1ee7f0fd-03b0-4bc1-84d7-394da594e69d" Name="WDDM Handles - Invalid Param Third Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="478246d4-de6d-4900-80af-afb14e41dfc6" Name="WDDM Toaster - Invalid Param Second Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="36dcfd55-96b1-487b-bbb9-3ef0db647fea" Name="WDDM Toaster - Invalid Param Third Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="52b00b65-1f5a-4904-af00-3b94a8c7ab9c" Name="WDDM Toaster - Invalid Param Fourth Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f315adb8-6f9f-487b-aaa4-fb027c758c72" Name="WDDM Toaster - Invalid Param Fifth Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ff0071d0-05b7-4807-9de3-deef8b24a858" Name="WDDM Toaster - Invalid Param Sixth Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fdf29686-93e7-46dd-83c3-84848098c17a" Name="WDDM Bit Flip - Invalid Param Second Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="0d39721a-fafd-4fb9-869d-c2b8e69c1fce" Name="WDDM Bit Flip - Invalid Param Third Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="89b84b1d-56ad-47e2-ac6c-528a35588ef3" Name="WDDM Bit Flip - Invalid Param Fourth Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="0733e4af-8b45-496f-bf9e-d427e1cb551d" Name="WDDM Bit Flip - Invalid Param Fifth Group" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="2f657caa-368c-4531-8cec-8faf475125f4" Name="Functional test for monitor container ID" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c2eef3c0-2f71-4872-906f-a8ee6f707a36" Name="Display Mode Filter Check" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f62f2b44-53c1-4110-a35e-55b61e52fa22" Name="Verify VESA and CEA required display modes" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f3338858-851b-432d-8728-5451b95a1795" Name="Multimon minimum resolution check - Multihead" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ccb45a50-ea07-42f0-9f0b-2105e453f8ae" Name="SimulateVSync TDR" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="86be5032-cfcd-4ee5-a515-0e3ebc0cb6f4" Name="SimulatePreemption TDR" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fd05d2c6-d00c-4c92-85e4-d94a813dba5b" Name="RenderOnly Swapchain Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="25860314-0969-42d5-92ae-34665277069f" Name="RenderOnly SetupAPI Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="6afc8979-df62-4d86-8f6a-99f05bbdc7f3" Name="UEFI GOP mode test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="255655fa-4d78-486e-8f8f-f1fdb01911f7" Name="WGFVidMMWDDM1_2 - OfferReclaim - FL9.1 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e38b6dcd-8581-400c-8c53-a5f05a07b8c3" Name="WGFVidMMWDDM1_2 - OfferReclaim - FL10.0 (WoW64)" 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="f041eba7-ec0b-4edb-915c-ef5735e98f07" Name="Display Monitor Modes - Check EDID support" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a0901fb0-ad91-4da6-a176-23b5742ee163" Name="Windows Client System Check For WDDM 1.3 Display Driver Support" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6efc91df-8e9c-4eb4-8da3-2840a2eac30f" Name="CoolingInterface Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="a424d41c-e66a-4dd9-b228-8fb33a83f571" Name="Driver Layering Check" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="2e97ccbf-018b-45e0-82f7-16bcf88669e1" Name="Run Dxgkrnl Smasher MITM module" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e730e88c-527f-474e-b722-4e02ee73a5a8" Name="VM Run Dxgkrnl Smasher MITM module" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="4f4e30cb-16f2-4e59-a111-5fe01a31747f" Name="D3D12 - 11 on 12 - WGF11 Viewports" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="a724181e-55ba-4370-9152-dacfbedec693" Name="D3D12 - 11 on 12 - WGF11 Tessellation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="e28c4837-66bc-430f-b345-5d0232b00c9c" Name="D3D12 - 11 on 12 - WGF11 Compute Shader" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="f3de20b5-2612-4729-92da-526af3376444" Name="D3D12 - 11 on 12 - WGF11 Shader 5x" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="df13a8ab-c45a-4b05-ad82-5ed0904e6ed0" Name="D3D12 - 11 on 12 - WGF11 Multisample" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="6e05ef56-8574-4697-b6c9-98a5c9370f13" Name="D3D12 - 11 on 12 - WGF11 Filter" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="e54c4b73-b55d-439a-b0bd-c600c2f95508" Name="D3D12 - 11 on 12 - WGF11 Async" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="80ea58fd-2310-4a6d-92ed-696af5244da8" Name="D3D12 - 11 on 12 - WGF11 Blend" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="d80c608a-7b21-4c00-9401-524e39d45875" Name="D3D12 - 11 on 12 - WGF11 Clipping" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="5222ea60-485b-4a6d-b5ee-e05bb5084af8" Name="D3D12 - 11 on 12 - WGF11 Depth Stencil" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="60262502-f2a4-4f17-8bc5-f6f60ba78770" Name="D3D12 - 11 on 12 - WGF11 Draw" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="912433c6-0a94-4ea2-a946-809183683ebf" Name="D3D12 - 11 on 12 - WGF11 Fill Rules" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="7546c2fa-68d2-4e29-b20f-dbc4c18839cd" Name="D3D12 - 11 on 12 - WGF11 Input Assembler" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="5e82cf1e-5b8f-46d1-82d7-7da788f9d18c" Name="D3D12 - 11 on 12 - WGF11 Pixel Shader" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="edbdc655-19ee-4d5e-9490-287642629ade" Name="D3D12 - 11 on 12 - WGF11 Rasterizer" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="541c76a1-c4d1-4778-aae0-b5f9a7975e12" Name="D3D12 - 11 on 12 - WGF11 Render Targets" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="c60f2784-2a1b-4908-a56d-3e9349718b13" Name="D3D12 - 11 on 12 - WGF11 Resource Access" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="e86becaa-f352-4bbc-b85f-66440991bc6c" Name="D3D12 - 11 on 12 - WGF11 Resource Formats" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="0775cf7f-6c18-4c5e-85df-e8a346be85b0" Name="D3D12 - 11 on 12 - WGF11 Streamout" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="c1720604-60f6-44fb-9920-64cffb73be90" Name="D3D12 - 11 on 12 - WGF11 Vertex Shader" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="2685dc1d-2b51-4094-a00b-bea1921d9326" Name="D3D12 - 11 on 12 - WGF11 Precision" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="4b6ba531-0096-4bd4-bdf8-c62c61281ec0" Name="D3D12 - 11 on 12 - WGF11 D3DWDDM" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="481778f3-d6a5-4f4d-925a-777d4d7718ef" Name="D3D12 - 11 on 12 - WGF11 TiledResources" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="ad061b31-8b17-4a75-a75f-7e2bf1c8859a" Name="D3D12 - 11 on 12 - WGF11 Compute Shader - PSO Cache" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="ba38a5ed-8d80-4634-b207-2ed5008b16a8" Name="D3D12 - 11 on 12 - WGF11 Shader 5x - PSO Cache" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="f2d0d120-b2fb-4d75-8607-3180e34ead7c" Name="GetRasterStatus (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8c268721-dffb-480a-916c-e64373b915a1" Name="WGF11 Shader 5x (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="adaf8993-b557-447a-bebe-5262143ff9d6" Name="WGF11 Multisample (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1bacae00-110d-47d6-afa9-00c3b8c501dd" Name="GetRenderTargetData - Backbuffer and Render Target (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3e94cba4-f753-45ab-a76e-7451a7469378" Name="WGF11 Filter (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="66d30e83-bbe3-4293-8e1f-de538617fc47" Name="GetRenderTargetData - Mip Texture and Cube Texture (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="30033a87-d821-4bda-977f-4b786dae0533" Name="WGF11 Async (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="7d5e9bf4-1258-430c-8ea5-47daa1878691" Name="WGF11 Blend (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d18b6661-a2ba-48de-b048-5a3baeb30f44" Name="WGF11 Clipping (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0ed22e21-1201-4dfb-a8c6-9d163744f213" Name="Index Buffer (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fa6bef94-f4ce-4e96-9721-ff48cc9afa07" Name="WGF11 Depth Stencil (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3d7fd917-d992-4213-988a-d859b26f466b" Name="WGF11 Draw (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="10cdedbe-ac88-497b-98c6-cf4a74854ef5" Name="WGF11 Fill Rules (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="aab4f278-c6d0-4b2c-8062-7103b2c7916a" Name="WGF11 Geometry Shader (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f57ff5d5-6b72-4cd8-bd62-e4487477e3c5" Name="Lightmap (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b7316ca2-2310-4f8d-8e55-fb35d6128466" Name="WGF11 Input Assembler (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="239b17a1-75cb-4017-a71a-726d83cda774" Name="WGF11 Pixel Shader (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="8c71be85-35ba-44da-bf5f-b30d9ce50c22" Name="Lightmap - Alpha (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d1700220-5f56-4d62-adc8-b24ef22a8971" Name="WGF11 Rasterizer (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ad624bae-5f84-43ca-95dd-2d7bac47487b" Name="WGF11 Render Targets (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="013c3c0c-95b8-47b2-9293-4b9a8a517bfd" Name="Lightmap - Factor (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="b6715cb3-b168-4ca3-a5db-5ca0a0ca627d" Name="WGF11 Resource Access (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0d75a6a7-0d5e-43d6-a0b4-1c220f1035d9" Name="WGF11 Resource Formats (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9f3e92b4-cda7-44b0-9d62-7a5bccb090d2" Name="Lightmap - Stability Mix (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d67b9f82-e74f-40e3-8cc2-ba605bfbcb55" Name="WGF11 SharedResources (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="bbe0847e-332c-4d6a-b914-a366c0820ea0" Name="WGF11 Streamout (WoW64) " Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2cda22c2-4cc2-467e-84f0-282df443c416" Name="Lockable Depth Buffer (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f1662596-10a1-4a09-b492-0853853f4498" Name="WGF11 Viewports" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="fa64111c-9416-4d7c-8c47-8ee5988040a2" Name="WGF11 Tessellation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="8e750e13-78da-48b8-b53f-41445b80c5c0" Name="WGF11 Interfaces" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="dba2b248-368c-4193-b458-8570632ca287" Name="WGF11 Compute Shader" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="6b5defdc-b178-4b8b-a704-0564484d0b0c" Name="Lost Devices - Resource Management DX9 w Lost Texture (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="40659235-009c-419d-a177-11623e8c995d" Name="WGF11 Shader 5x" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="d7d608c2-527d-45c2-a16a-ac316c2322a6" Name="WGF11 Multisample" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="65a70ffa-a02c-4975-afb1-c81828b4055b" Name="Lost Devices - Resource Management DX9 w-o Lost Texture (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1a641b9d-a323-4753-a381-6a7102dbc512" Name="WGF11 Filter" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="382ad898-1b0e-409a-8e6b-4ab2c7ae86a3" Name="Maximum Primitives (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="df64f42e-5166-4941-a9af-a9a7ed0329cc" Name="WGF11 Async" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="5589db5f-e28c-476b-9d9a-9f559ecc08a0" Name="Memory Leak Verifier (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2ea1c8f4-c461-438e-a2a8-85b01ee00f11" Name="WGF11 Blend" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="686000fe-2a92-41f3-8a74-92e53d4597d8" Name="WGF11 Clipping" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="71939f01-c300-4719-bd1c-3ba7a4da722a" Name="Memory-Texture Management (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="ad43f639-5b33-4f7a-81f3-868c7652c655" Name="WGF11 Depth Stencil" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="cd0046f6-9516-46e7-8e43-1de84a6de9d7" Name="WGF11 Draw" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="acbdb9fe-b3c4-4cde-8207-e0a188e62287" Name="MipFilter (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="31378dc1-1124-4488-b703-839bcafff616" Name="WGF11 Fill Rules" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="eebf8171-f86b-4a66-b5cb-d5d7cabc9b2c" Name="WGF11 Geometry Shader" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="ae682378-cab9-4c4d-9c68-f358eebb1998" Name="WGF11 Input Assembler" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="dba40a83-c886-4dc8-affa-542d50e464c1" Name="MultiHead Support (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="62ac2876-3a48-4ec6-bb38-dab847a3c232" Name="WGF11 Pixel Shader" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="505e9736-ad3e-4503-99c9-1298ce0b3a50" Name="WGF11 Rasterizer" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="4e01b2fa-31e4-46e1-955c-e27c1852b9c1" Name="Multipass Z-Fighting (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="f797e77a-6458-41fd-b00e-c68a7529dd16" Name="WGF11 Render Targets" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="ec3e13a2-6847-44b7-bfdd-97d9dc04dec5" Name="WGF11 Resource Access" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="9278c497-f0b0-430c-9057-7059518dfc6a" Name="Multiple Lights (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="3c61b186-bf1c-48ca-bd84-b1be5649860f" Name="WGF11 Resource Formats" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="25144f2a-9b3b-496f-8756-97e09bc7035d" Name="Multiple Render Targets (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="6aafb273-bd39-4f9b-8783-a2245990b106" Name="WGF11 SharedResources" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="62bd1e3e-3b70-4182-8632-4fb7265da2be" Name="WGF11 Streamout" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="8dcac1e6-10b3-4fd7-8b40-72aa22217fb2" Name="Multisample Stability (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="266eec80-6c6e-43a8-8cbe-115caf96cde1" Name="WGF11 Vertex Shader" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="0b14eb13-b228-490d-88b3-e25e29233d1d" Name="Multisampling (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="44d7d1cb-2eb4-4fb6-8fc8-3c7fcc953aff" Name="Multistream Rendering (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cdd9504f-dc19-4857-bc49-1e49ff62b86f" Name="MultiSwapchain (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2bf4b972-52c8-474a-82ca-c740dfa61b5e" Name="Non Power 2 Conditional ConfTest (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="2671f153-7f4f-4c85-af7f-a6d7d4875fc2" Name="Non Power 2 Conditional RenderTarget (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="01bdd47e-2e48-4788-b69d-6480277b074b" Name="Overdraw-Underdraw (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0933127c-28d7-4bc9-a8a3-8fa636044252" Name="Palettized Textures (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d3bf9440-2dbe-4201-8a0c-303196144b1e" Name="Perspective (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="c3a03780-c07b-4247-9755-3c646c203ce6" Name="Pixel Shaders Precision (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="67175b08-042f-455c-998c-d24bc821610a" Name="Pixel Shaders Ver 1.1 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="beafc6d8-040b-49e4-8df6-0237b27f4b0d" Name="Pixel Shaders Ver 1.2 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="cf351b6c-da4e-4aed-8a14-2278d7ceb4e1" Name="DXGI GDI Interop D3D11" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="d3020fb9-4b56-4ab7-8159-6707af8d9bcd" Name="DXGI GDI Interop D3D10.1" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
<OSPlatform Name="Windows v10.0 Client ARM64 NI Full" />
</Test>
<Test Id="1842e96e-7e55-469d-9e5f-42c44bb7ec35" Name="Pixel Shaders Ver 1.3 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a2841b98-3894-4755-b59a-9ad8e3007d3d" Name="Pixel Shaders Ver 1.4 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="566bc1c9-9699-40e1-9bb8-f95e0e7aa3db" Name="Pixel Shaders Ver 1.x (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1414007d-3b77-444c-9ccc-55e934439cd1" Name="Pixel Shaders Ver 2.0 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="154655a2-1be2-408f-9e72-01e258358f7e" Name="Pixel Shaders Ver 2.0 Extended (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="fbcd81c7-5f9d-4bad-b5b3-5dfbb8eb78f5" Name="Pixel Shaders Ver 2.0 Landscape - Starburst (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5ccd5d74-3e3d-4d6c-9a2e-3412dd024e40" Name="Pixel Shaders Ver 2.x (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="1642b89a-73ac-4718-a4a7-7f3b77b7d474" Name="Pixel Shaders Ver 3.0 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="9ae855d2-9b6d-4ee7-9a84-4ceeeec63b86" Name="Point Sprites (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="5a78b261-a6d2-4ff6-929c-f5a0f3aa152b" Name="Present Validation (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="0d55f876-ff02-4bdd-9e40-74b1d0c9a857" Name="Present Validation 2 (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="a2e0db44-2ac8-49fb-bf5a-fe321bbfc1a2" Name="Present Validation 2 (FullScreen) (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="d3238e0e-747b-412d-95f4-14fa45beda0c" Name="Primitive Batching (WoW64)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x64 NI Full" />
</Test>
<Test Id="e2dbfadf-6187-4f22-bd54-a0389c3f18b2" Name="Set Render Target (WoW64)" Version="1.0">