-
Notifications
You must be signed in to change notification settings - Fork 4
/
1709.xml
9625 lines (9625 loc) · 569 KB
/
1709.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 Id="f63fdbbb-cc55-4ebd-a7ab-ff456ba3bf25" Name="HLK Version 1709 CompatPlaylist x86/x64" Version="1.0" xmlns="http://schemas.microsoft.com/hlk/playlist/2014">
<Test Id="4d331b4f-44f4-41f1-b392-795e5d17d396" Name="Bluetooth - 4LeSpecification (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="38f8b917-00d4-4394-8300-e49e11d71340" Name="Bluetooth - 4LeSpecification (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="865d28e3-a84a-49db-b755-4fd606e4c508" Name="Bluetooth - BluetoothDeviceIDProfileVer13_1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="950da6ae-fffb-42b1-9b5c-56e27a1c10b2" Name="Bluetooth - BluetoothHidLimitedDiscoverableMode (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="1113fc6f-0cdf-4a80-8fd6-300a1f14e908" Name="Bluetooth - ConnectedStandby1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="39c3c500-5d68-4a94-b114-bc3232ec609d" Name="Bluetooth - HidInitiateReconnect1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="79cd2a1f-0651-484f-901e-aaccd831e4fe" Name="Bluetooth - KeyboardSupportPasskeyAuthentication1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="416bddf4-a01d-4c83-943f-8cfd42e34d50" Name="Bluetooth - LEStateCombinations1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e293dfde-1181-44b7-bf80-c4e48f31c501" Name="Bluetooth - LEWhiteList1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="43f72e80-f4c7-4d27-b3a8-ff64438d7c4e" Name="Bluetooth - MicrosoftBluetoothStackPresent1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7aa39fe4-98d4-45ca-a89b-c514096bf48e" Name="Bluetooth - NoBluetoothLEFilterDriver1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="5b44ffb4-52a2-4ff8-a2fe-5bc22810e273" Name="Bluetooth - NonUsbPerformance (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c5bc4b10-9311-46cd-a7fd-fd4c35ac382c" Name="Bluetooth - NonUsbScoSupport (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="6c3de351-87f1-44b3-bf15-a0de2ca1bfa2" Name="Bluetooth - NonUsbUsesMicrosoftStack1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="66574c98-3b2d-41ba-9799-88aaa8dca9aa" Name="Bluetooth - OnOffStateControllableViaSoftware1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9358c22d-4de3-4630-963a-5af123f5fcc4" Name="Bluetooth - OnOffStateControllableViaSoftware2 (Reliability)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="4ed42f21-e8dd-4f76-883e-9b20a30b3cde" Name="Bluetooth - Optional - HciExtension1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="37966e33-0e5d-4085-ba71-572e3c56eb34" Name="Bluetooth - Optional - HciExtensions (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="a418fd87-d6af-4038-a136-4f24ce11238b" Name="Bluetooth - SimultaneousBrEdrAndLeTraffic (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="2ab4cd6a-31f0-43cc-b729-b38521608266" Name="Bluetooth - SimultaneousBrEdrAndLeTraffic1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="10340e73-dd9c-4d30-9904-046e3f322cd7" Name="Bluetooth - SpecificInformationParameters1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="602d4ba9-c8d8-4168-a5e4-a4b9afcdfd14" Name="Bluetooth - SupportsBluetooth21AndEdr (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9af9919e-8a0c-4210-aef6-3a6ef2201446" Name="Bluetooth - SupportsBluetoothVer21_1 (Bring Up)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b1a89b7d-e692-4025-9063-95519b03e16b" Name="Bluetooth - UsbScoDataTransportLayer (Development and Integration)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="0861b530-868e-427e-94d1-2068f2e92a9a" Name="ACPI Logo Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="72205ee4-decf-41f8-8646-9dae0d572507" Name="MITTI2C BasicIOKernel" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="774bf853-aae2-4f1a-99a7-0650e7b82ec1" Name="MITTI2C BasicIORead" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="97845f14-9a27-428a-9568-1959f6537114" Name="MITTI2C BasicIOSequence" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="4968d46e-7999-4482-9b07-16999c9275d0" Name="MITTI2C BasicIOWrite" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="01705206-a298-47a8-9f3f-691da1c7608c" Name="MITTI2C BusRecovery" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9fee93f3-8f12-47d8-8d7f-b770e9d062f9" Name="MITTI2C CancelRead" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="0a1a6003-90ee-449c-9e6d-129af7e51f93" Name="MITTI2C CancelSequence" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b6863753-fa6e-4e8f-846f-a9a26d9dde61" Name="MITTI2C CancelWrite" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c3e7de57-958a-4f17-a885-a11e82ea14be" Name="MITTI2C ClockStretching" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d7adbfc3-e650-4be0-bdcd-8f2bb9446405" Name="MITTI2C DeviceNACK" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3a2f7055-4c33-47da-8d58-1a38ac3310e6" Name="MITTI2C LockUnlock" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f7412705-99a2-4ca1-ab9c-2a0d03c3544f" Name="MITTI2C PerfRead" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="31221b1b-15bf-486e-af13-933481a5422a" Name="MITTI2C PerfSequence" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f0ee7dea-aafb-4b97-b6bb-367b46eee49d" Name="MITTI2C PerfWrite" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="27c2360a-f473-457b-b6f8-f89ccd2fba47" Name="MITTI2C Power" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f0744097-2f8d-44d8-b681-2653fd5305a5" Name="MITTI2C Stress" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3678b5aa-9e8c-4b6e-891e-0bbf22ed4fa3" Name="UCSI commands - Get Alternate Modes, connector" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="af5fe3fb-1008-47b9-8720-58ac3211638f" Name="UCSI commands - Get Alternate Modes, SOP" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="28f83153-ca18-4dab-ac89-3cbaed88beda" Name="UCSI commands - Get Alternate Modes, SOP-DoublePrime" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="35f1e615-f1fa-4e19-85e4-5e691010d8b8" Name="UCSI commands - Get Alternate Modes, SOP-Prime" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b7e0a30e-7cfa-493c-87cd-7b8b58c4fe82" Name="UCSI commands - Get Cable Property" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="0fef5c16-ebfb-4719-9486-b55ea5355b58" Name="UCSI commands - Get Capability" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="2eca1509-bde4-4986-95a8-154983677379" Name="UCSI commands - Get Connector Alternate Modes Supported" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b41e44c6-5ce0-4570-8eaa-b6cc07668ec8" Name="UCSI commands - Get Connector Capability" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7abf99fa-39d6-4c2c-9561-8aa084391a37" Name="UCSI commands - Get Connector Status" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="feaf371a-72f2-4066-8fc5-fbb5233f1644" Name="UCSI commands - Get Connector Status, Request Data Object" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="2fe2679d-77c3-4240-88bf-4a2c65ae1cd8" Name="UCSI commands - Get Current Connector Alternate Mode" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f7712603-7ca7-490f-84cc-03766866df9f" Name="UCSI commands - Get PDOs, Advertised Capabilities" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="79b87f16-6e0e-4247-83f4-7a1f37a9af40" Name="UCSI commands - Get PDOs, Current Supported Source Capabilities" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e07609c3-ff9c-4278-832d-8f8fdcda279d" Name="UCSI commands - Get PDOs, Maximum Supported Source Capabilities" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="a46ffce1-ef3b-42fb-bebf-2aed795f69e6" Name="UCSI commands - Get PDOs, partner Sink Capabilities" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="6fc10795-00cf-49e7-bff9-30380bcaaf22" Name="UCSI commands - Get PDOs, partner Source Capabilities" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="fd9d3a2b-202b-44df-8dd9-c85c14b659ca" Name="UCSI commands - Get PDOs, Sink Capabilities" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7aef1f80-42ed-47c9-80ba-7426c3544822" Name="UCSI commands - PPM-Reset" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="6d6ab185-51a9-43e6-8a23-0b84357531cd" Name="UCSI commands - Set Notification Enable" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="583cc422-44bc-43aa-bdc7-1192780940f8" Name="UCSI commands - Unsupported command" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="309bb295-ee4f-4a46-bd00-8689684feaa3" Name="UCSI Connector One Identification" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f0730181-28c8-4d92-bcbd-6783fc3a41b3" Name="UCSI Connector Reset command" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="ce6538d6-2f43-4d24-8f4c-454659eedeee" Name="UCSI Get Connector Status - Battery Charging Status Change" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b5820aa3-c0a2-4a48-b84f-5dcb03221cfa" Name="UCSI Get Connector Status - Error" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e7820d01-678e-4fc6-a266-72345ef8696f" Name="UCSI Get Connector Status - External Supply Change" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="bbedfbd5-d36b-48cc-ae46-23914a94a23f" Name="UCSI Get Connector Status - Negotiated Power Level Change" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="86754f72-99e2-4778-a2af-c1d2dbf3a2dd" Name="UCSI Get Connector Status - PD Reset Complete" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d9ad59e2-f65d-47de-97e6-4cc5a01f7f23" Name="UCSI Get Connector Status - Supported Connector Alternate Modes Change" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c7365acb-4287-40cd-9695-41061f5e3f95" Name="UCSI Get Connector Status - Supported Provider Capabilities Change" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c3c650ee-8c7f-4ab9-b023-d4380480232c" Name="UCSI Get Connector Status command - AudioAccessory detection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="dc6eae9a-1797-4398-b2e6-ddf3e81fffe3" Name="UCSI Get Connector Status command - DebugAccessory detection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="74f974bf-0aef-4961-bfd0-5ff754b647e1" Name="UCSI Get Connector Status command - USB device detection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="27ca706c-87d1-49a5-a01d-11c9ffb22101" Name="UCSI Power Direction Mode command - Consumer" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="aabf6e16-86ac-45dc-adc1-312d7997ed52" Name="UCSI Power Direction Mode command - Provider" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e0f75f57-749e-4841-b13d-1185eaa2cd40" Name="UCSI Power Direction Mode command - Provider-Consumer" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c32c0757-6ec2-48b3-9fa1-f74a7810a0ae" Name="UCSI Power Direction Mode command - Reset on PPM-Reset" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c4b3dd8a-8bd6-4fc8-b4b0-f0c09f3eb284" Name="UCSI Power Direction Role command" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="91926b17-dfc0-4000-9525-85be79f13387" Name="UCSI Power Direction Role command - Accept swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="43561fe9-b19c-4afd-ba06-cd7f3396d7f9" Name="UCSI Power Direction Role command - No connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="16ae2f52-9848-4a5f-8fc0-0567d6d395de" Name="UCSI Power Direction Role command - Reject swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="751e91c4-32cf-4081-972f-6f530ff7037c" Name="UCSI Power Direction Role command - Reset on disconnect" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="31ec0e23-83f7-424f-a250-82844a17004d" Name="UCSI Power Direction Role command - Reset on PPM-Reset" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b54768d3-fda7-492d-9ea2-e335d902af34" Name="UCSI USB Operation Mode command - DFP to DFP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3cfb9209-57d5-4048-bce9-60834eb62c9f" Name="UCSI USB Operation Mode command - DFP to DRP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="226a94d9-fcc4-4fe1-b768-b14c332575bd" Name="UCSI USB Operation Mode command - DFP to UFP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="eca60cab-ae9c-4080-9b37-a9bc1f0b2141" Name="UCSI USB Operation Mode command - DRP to DFP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e4f92c33-4b12-4893-8482-e9a4ec1b46ed" Name="UCSI USB Operation Mode command - DRP to DRP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c19db5b1-c6a0-4ba3-a29b-777a8226c0c7" Name="UCSI USB Operation Mode command - DRP to UFP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="a5b1a75c-875b-4ec9-8332-d60ceb8363df" Name="UCSI USB Operation Mode command - PPM-Reset clears DFP Operation Mode" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="2b13908e-cbf9-44d4-b051-4bbf97ddc107" Name="UCSI USB Operation Mode command - PPM-Reset clears UFP Operation Mode" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="8604a929-22b7-431e-a479-6bcf8be0879f" Name="UCSI USB Operation Mode command - UFP to DFP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f00b27c5-6f26-4f8d-a631-1a93b9baed95" Name="UCSI USB Operation Mode command - UFP to DRP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="4be60056-4d5b-4225-8412-a5b3298b983c" Name="UCSI USB Operation Mode command - UFP to UFP connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d509cc10-3b29-4a1a-95a1-bfa84fc356e7" Name="UCSI USB Operation Role command" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9730dfc4-a1f6-4952-9c68-7996ada32539" Name="UCSI USB Operation Role command - Accept swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="1f82fa9b-84c4-475a-bf85-bad7003b1d3c" Name="UCSI USB Operation Role command - No connection" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d2785559-7834-438b-949d-0d5a1e404f96" Name="UCSI USB Operation Role command - Reject swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="999fa902-8d6c-4f4a-8b7e-cfe5ebe735cf" Name="UCSI USB Operation Role command - Reset on disconnect" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="ac8f8d7d-b057-4d62-9602-8551aaf943fc" Name="USB (USBDEX) Verifier Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="6a193c3a-d18b-468b-92bd-77166266a2df" Name="USB 3.0 Insertion Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="4e35cd21-a1dd-4cfa-be2d-1a9c9d6a1fef" Name="USB Device Connection S3+S4+Connected Standby" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="5271c664-5f93-414e-93e7-31b394a552d4" Name="USB Exposed Port System Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="68f6e04f-4b7f-4548-9562-db9d46105554" Name="USB Hub Exposed Port Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="06e1e2d7-ac7c-4ded-82f7-9c6a31386880" Name="USB Internal Device Idle Test - Compat" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d7f8441a-08da-43e1-8537-7fe02cf94d32" Name="USB MUTT Firmware Update for Devices" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="ac1599fe-ed1f-4f29-9a57-01896c3d7db5" Name="USB Selective Suspend Test (XHCI)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="0f2d5113-cf70-4cda-8afc-b7005d1e2739" Name="USB Serial Number Test" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="dcfe7828-8a74-4ffb-ad66-5a73df7e4b62" Name="USB TCD 1 Simple IO Completions" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e3bf9b24-9429-400e-8d8c-92f96ccdedd5" Name="USB TCD 2 Bulk IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="19d64825-3992-4c61-89a0-2a1891c50182" Name="USB TCD 3 Bulk and Interrupt IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f53b2d2d-cdab-4d25-9a54-afa0095dbd85" Name="USB TCD 4 Isochronous IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d32e3f24-5b36-469c-a860-7aa0d175ee72" Name="USB TCD 5 Bulk and Isochronous IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="ccb01128-22e9-4e5f-a70b-e0946c00ee81" Name="USB TCD 6 All Endpoints IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="806dfc29-fc97-4559-ab67-fd9b60363b21" Name="USB TCD 7 Random Sized Bulk IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="088f2822-d933-40d6-a7d3-c1c30fbf923e" Name="USB TCD 8 Isoch Completions Single Thread" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7a502029-2f91-43bb-9f01-7ca756566055" Name="USB TCD 9 Isoch Completions Multi-Thread" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b3c41a3f-b844-4c2d-b115-dad51a37f123" Name="Usb Type-C ACPI Validation" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7532aea0-19fe-4e27-a933-f709fe8ba97b" Name="USB Type-C UCM Data Role Swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="409b09a8-718b-4537-ada2-95c59a1df830" Name="USB Type-C UCM Power Role Swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="78235e16-41d4-42a5-884a-f9dd08ed34c1" Name="USB Type-C UCSI Data Role Swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="41ce1085-aa0d-4feb-886c-2468c2ebb7d6" Name="USB Type-C UCSI Power Role Swap" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="02af7b0a-8859-414c-9061-bbf9c1b60c73" Name="USB3 Termination" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="a7785ba8-e619-4fa9-a709-8404c9e75dfe" Name="USB-IF Certification Validation Test (Controller)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="eaccaddf-d3dc-4d05-9d04-bf2549a54cbd" Name="USB-IF Certification Validation Test (Device)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7b8f8c28-c829-4a51-a1af-bb01a43dc048" Name="Verifies PS2 Devices have a unique Plug and Play ID" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e1c0c2dd-cd25-4f60-a4bc-c8544d481225" Name="WinUSB 1 Simple IO Completions" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="51e5ed02-a40f-4c41-b539-1333b93e39bc" Name="WinUSB 2 Bulk IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="ae30b11c-2e8c-4de4-9dba-708948f53d71" Name="WinUSB 3 Bulk and Interrupt IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="8d77f27a-7947-40bd-b9e6-e4bd2cc7d461" Name="WinUSB 4 Isochronous IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f3f66a3e-48de-4723-aee4-7d70fb18b366" Name="WinUSB 5 Bulk and Isochronous IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="10c43e50-569f-47fa-ac97-eacb768c246a" Name="WinUSB 6 All Endpoints IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3443ccc0-1137-4a2b-b224-9cd7e01fb73f" Name="WinUSB 7 Random Sized Bulk IO Cancellations" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c672c8db-3c19-4659-a352-a9736496692d" Name="WinUSB 8 Isoch Completions Single Thread" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="aeb834e0-7701-4761-aeb1-e36454be99f7" Name="WinUSB 9 Isoch Completions Multi-Thread" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="eaeb28f5-55ae-4e77-968d-5f7af85c461a" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_CUSTOM enum all, rec and preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="69e712d1-3256-4ef9-aecf-80436fe41e37" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_HighQualityPhoto is supported, set first index" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="762d18e5-63ca-4611-af55-857f3a218d59" Name="Camera Driver Controls Device Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_VideoRecording is supported, set first index" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e6c160c5-a59b-43ad-b05c-56fa8e01b3dc" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_CUSTOM enum all, rec and preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="73f2ddb5-70a3-41e2-a9ed-ee6586ef04cc" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_HighQualityPhoto is supported, set first index" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="cbdc5f61-8e69-4c77-a404-a5272aa6cd63" Name="Camera Driver Controls System Test - CAMERA_PROFILES - Verify KSCAMERAPROFILE_VideoRecording is supported, set first index" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 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 x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="913f1278-5514-4092-9014-7e6ebc6efdce" Name="Camera Driver Controls System Test - EVCOMPENSATION - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="24b6f37f-88b5-480c-b0da-1f3e458727cc" Name="Camera Driver Controls System Test - EVCOMPENSATION - Iterate through possible settings" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="24d1197f-5bf3-4177-b6f9-3d1d38e21f60" Name="Camera Driver Controls System Test - EVCOMPENSATION - Iterate through possible settings while Previewing" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="734d6e37-f8e4-4b92-921c-d310097b8542" Name="Camera Driver Controls System Test - EVCOMPENSATION - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3165abe1-276f-42a2-ba63-3fa09863b2ea" Name="Camera Driver Controls System Test - EXPOSUREMODE - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="bd30c0bb-0608-4b8d-b1ca-5dbb43201365" Name="Camera Driver Controls System Test - EXPOSUREMODE - Iterate through possible settings" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="0b8e6765-cdff-42f4-b816-61531a285fe9" Name="Camera Driver Controls System Test - EXPOSUREMODE - Iterate through possible settings while Previewing" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="afebb528-b079-41a5-9164-88480a7975bc" Name="Camera Driver Controls System Test - EXPOSUREMODE - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3f444590-f26e-4392-8e74-b5afdbfc42f2" Name="Camera Driver Controls System Test - FACEDETECTION - Iterate through possible settings while Preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e1161c35-7761-438e-8684-559efec9e73b" Name="Camera Driver Controls System Test - FACEDETECTION - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="057ab4db-e5f4-4ada-bf58-ddf259fe7303" Name="Camera Driver Controls System Test - FACEDETECTION - Verify Default setting" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="cd3d05d0-8fc9-4e8d-a044-9f852c54e775" Name="Camera Driver Controls System Test - FIELDOFVIEW - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="cfefca57-f1c4-4a82-91d3-bfdca295d97f" Name="Camera Driver Controls System Test - FLASHMODE - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e59d23a8-7210-415f-8321-3ea2ea0e4150" Name="Camera Driver Controls System Test - FLASHMODE - Iterate through possible settings" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b5814b1d-dbb9-4def-94aa-a72704d2a7f7" Name="Camera Driver Controls System Test - FLASHMODE TORCHMODE - scenario" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9635d861-c75c-48af-9b6c-efa21064f8de" Name="Camera Driver Controls System Test - FOCUSMODE - Iterate through possible settings while Previewing" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="79fb2444-8aa4-42e8-ad04-28b338b1ff83" Name="Camera Driver Controls System Test - FOCUSMODE - Iterate through possible settings while Previewing after start streaming for a few seconds" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="17e6c886-c616-409f-ac1f-5fcf92b9ec4a" Name="Camera Driver Controls System Test - FOCUSMODE - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="82d40d69-93b1-45ae-aad0-f2ce53881a92" Name="Camera Driver Controls System Test - FOCUSMODE - Iterate through possible settings while Recording after start streaming for a few seconds" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="52eeb141-5e7d-487f-8df0-6f8f9e7704c7" Name="Camera Driver Controls System Test - FOCUSPRIORITY - Iterate through possible settings take Photo and Preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="516473b6-a3ee-47c5-93bf-8c8fec8e6247" Name="Camera Driver Controls System Test - FOCUSPRIORITY - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="482b01a8-55b8-4c93-8822-01cff3773cfa" Name="Camera Driver Controls System Test - FOCUSSTATE - Verify Default setting - Record Video" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="1bb9a91b-758e-4494-985f-84667cea44f6" Name="Camera Driver Controls System Test - FOCUSSTATE - Verify Default setting - Take Photo" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="997befce-0272-4449-bf79-0a271839520a" Name="Camera Driver Controls System Test - HISTOGRAM - Turn on Histogram while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="2f2a6f26-5b52-4563-821a-d6bf1f78cfcc" Name="Camera Driver Controls System Test - HISTOGRAM - Verify correct Pin" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="0175f437-4fff-4692-9537-c1627f7b8a8c" Name="Camera Driver Controls System Test - HISTOGRAM - Verify Default setting" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="baeb81c1-977b-45f6-807b-e05221cfa4a0" Name="Camera Driver Controls System Test - ISO - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c5760846-610b-4ea7-9898-7fb59b33ded0" Name="Camera Driver Controls System Test - ISO - Iterate through possible settings" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="30bef893-dcf8-426e-b2f3-7318570c68f7" Name="Camera Driver Controls System Test - OIS - Iterate through possible settings take Photo and Preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="cc71f911-fac3-4a3a-9a9e-f9ddc2e37bde" Name="Camera Driver Controls System Test - OIS - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="22f9d4c0-d365-469f-b91a-683dac953d70" Name="Camera Driver Controls System Test - OIS - Verify Default setting" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="42048297-7e6b-4e11-8293-cb25a1bfbec6" Name="Camera Driver Controls System Test - OPTIMIZATIONHINT - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d5b2b5a0-624d-41e9-8780-3b8c155c24e9" Name="Camera Driver Controls System Test - OPTIMIZATIONHINT - Iterate through possible settings" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7f43c07c-77f6-4361-8977-3863e61d476c" Name="Camera Driver Controls System Test - Photo Frame Rate - check default rate" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="ac98ec01-feb5-4410-85c3-aa89c073446c" Name="Camera Driver Controls System Test - Photo Max Frame Rate - Check default Frame Rate" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="51e7b6b0-a478-4720-b4c2-a1f239209ee5" Name="Camera Driver Controls System Test - Photo Mode - verify mode change" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="8c2d99d7-9986-404a-a0b1-1527e2e3fdea" Name="Camera Driver Controls System Test - Photo Sequence - Asyncronously turn on and off PhotoSequence (return event)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9a680770-f440-404e-bd42-d67d7d55ef53" Name="Camera Driver Controls System Test - Photo Sequence - Asyncronously turn on burst mode (return event)" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9e062c35-9a6d-4c5b-8760-61f2e97a49e6" Name="Camera Driver Controls System Test - Photo Sequence - Check Not supported on VIDEO_PREVIEW_Pin" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3a9d1af9-f099-478b-a9ad-c07b476de879" Name="Camera Driver Controls System Test - Photo Sequence - Check Not supported on Video_Record_Pin" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="3aab27f6-aa75-445b-b6ba-cb0fc6ce0c9c" Name="Camera Driver Controls System Test - Photo Sequence - Max Past Frames" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7b41a8b4-c90f-445f-8184-5252ab7ac8ed" Name="Camera Driver Controls System Test - Photo Sequence - One Past Frames" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="0b37ad95-69ea-4f5c-a681-317aa82021a8" Name="Camera Driver Controls System Test - Photo Sequence - Thumbnail" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="277bfb17-ccd6-4c2e-b150-880ec8d3c4c9" Name="Camera Driver Controls System Test - Photo Sequence - Thumbnail All Thumbnail Size" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="56e4cc41-c107-4acb-9575-ce897667f7cc" Name="Camera Driver Controls System Test - Photo Sequence - Zero Past Frames" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="8bcc0784-499c-441a-bcaa-5d6b224d3665" Name="Camera Driver Controls System Test - Photo Trigger Time - Check default phototriggertime" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="8a6c5490-74aa-4ca3-b049-78d91ac9c4a9" Name="Camera Driver Controls System Test - PHOTOCONFIRMATION - Iterate through possible settings take Photo and Preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="ff7b92a1-7a99-4859-95c3-8aaf5d2691e2" Name="Camera Driver Controls System Test - PHOTOCONFIRMATION - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="fb1845ae-2c43-4c90-99ae-0282cd9e426e" Name="Camera Driver Controls System Test - PHOTOCONFIRMATION - Verify Default setting" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="cb2bf696-58ce-4cd9-a033-dd391d8dd92d" Name="Camera Driver Controls System Test - ROI - 3A Photo Capture" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f709adbb-df35-4515-b05d-c7c1c317d6f1" Name="Camera Driver Controls System Test - ROI - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="9bb96fdf-a745-4a18-a56b-f7a5f8e724f5" Name="Camera Driver Controls System Test - ROI - Exposure" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="246e7177-3ed6-4c19-a0dd-f5ff891efe29" Name="Camera Driver Controls System Test - ROI - Exposure and Whitebalance Photo Capture" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="5d6dd284-8828-4a67-8829-11fb2b482eb5" Name="Camera Driver Controls System Test - ROI - Exposure Photo Capture" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="f27db3ab-1d7e-4230-9b9f-69328a6c1f03" Name="Camera Driver Controls System Test - ROI - Exposure Valid Rects" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b62647c6-d7a0-41bc-9b56-ee5b01634f23" Name="Camera Driver Controls System Test - ROI - Focus" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="99dcd577-8614-4100-b29a-b705254eccb8" Name="Camera Driver Controls System Test - ROI - Focus and Exposure Photo Capture" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="4af673ee-0190-46c0-8f38-8b280423c92e" Name="Camera Driver Controls System Test - ROI - Focus and Whitebalance Photo Capture" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d1e4fb10-c070-480a-a5fb-bfc97434cb0a" Name="Camera Driver Controls System Test - ROI - Focus Photo Capture" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b3f12689-9e89-437e-9e64-b3ba429ee809" Name="Camera Driver Controls System Test - ROI - Focus Valid Rects" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="fd34d81b-9b6f-40b6-a62b-f826e362c025" Name="Camera Driver Controls System Test - ROI - Set Clear" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="55d601f2-fcdc-415c-bbd1-42a85af895b6" Name="Camera Driver Controls System Test - ROI - WhiteBalance" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c0c24c88-182c-4be9-b2a7-20f77c784340" Name="Camera Driver Controls System Test - ROI - Whitebalance Photo Capture" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="bbf1ced7-a159-4b35-9094-1b6fd0872652" Name="Camera Driver Controls System Test - ROI - WhiteBalance Valid Rects" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="2ca0e801-8b1e-4f5a-bee3-c2eaec6fd0fc" Name="Camera Driver Controls System Test - SCENEMODE - Get Default setting" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="c2fa936e-8da5-4f5c-bf6a-b9f8fb53301e" Name="Camera Driver Controls System Test - SCENEMODE - Iterate through possible settings" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="756a4e31-28bc-4e76-96b2-5a4cc6e5f619" Name="Camera Driver Controls System Test - SCENEMODE - Iterate through possible settings take Photo and Preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="de1d99d9-e432-4133-812c-862475e1d555" Name="Camera Driver Controls System Test - SCENEMODE - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="668ef264-a53c-4760-a91a-eac9788f8f6f" Name="Camera Driver Controls System Test - Torch Mode - Check Default" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="8c70878a-806f-4142-af8c-6f1e5c2516de" Name="Camera Driver Controls System Test - Torch Mode - Iterate through possible settings" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="d0bc8285-b90a-4bd1-b1af-fca198bd8cc3" Name="Camera Driver Controls System Test - VFR - Iterate through possible settings take Photo and Preview" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="e678647f-2273-426c-b02b-b60912618460" Name="Camera Driver Controls System Test - VFR - Iterate through possible settings while Recording" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="05418bba-8ae6-427b-a967-3fbe7b502beb" Name="Camera Driver Controls System Test - VFR - Verify correct Pin" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="1d945fa5-ba18-4063-9005-63a7d7603e4a" Name="Camera Driver Controls System Test - VIDEOHDR - Set Video HDR auto using profiles" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="2b052136-414b-424c-8eb2-0e455525453a" Name="Camera Driver Controls System Test - VIDEOHDR - Verify correct Pin" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="7e7046c0-58f7-409e-9d26-605dfa08b61a" Name="Camera Driver Controls System Test - VIDEOHDR - Verify Default setting" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="138929cd-98b9-40fc-aa0b-709efee9a8d1" Name="Camera Driver Controls System Test - VIDEOHDR - Verify Fail to turn off Video HDR on Video HDR while streaming with with STATUS_INVALID_DEVICE_STATE" Version="1.0">
<OSPlatform Name="Windows v10.0 Client x86 RS3 Full" />
<OSPlatform Name="Windows v10.0 Client x64 RS3 Full" />
</Test>
<Test Id="b1d5aa10-b863-4857-a527-82016d978d47" Name="Camera Driver Controls System Test - VIDEOHDR - Verify Fail to turn on Video HDR while streaming with with STATUS_INVALID_DEVICE_STATE" Version="1.0">