forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVSCodeCoverage.runsettings
62 lines (57 loc) · 2.5 KB
/
VSCodeCoverage.runsettings
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
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<!-- Configurations that affect the Test Framework -->
<RunConfiguration>
<!-- Path relative to solution directory -->
<ResultsDirectory>.\TestResults</ResultsDirectory>
<!-- [x86] | x64
- You can also change it from menu Test, Test Settings, Default Processor Architecture -->
<TargetPlatform>x64</TargetPlatform>
<!-- Framework35 | [Framework40] | Framework45 -->
<TargetFrameworkVersion>Framework45</TargetFrameworkVersion>
</RunConfiguration>
<!-- see https://github.com/csoltenborn/GoogleTestAdapter/blob/master/GoogleTestAdapter/TestAdapter/GoogleTestAdapterSettings.xsd for possible values -->
<GoogleTestAdapterSettings>
<SolutionSettings>
<Settings>
<TestDiscoveryTimeoutInSeconds>60</TestDiscoveryTimeoutInSeconds>
</Settings>
</SolutionSettings>
<ProjectSettings>
</ProjectSettings>
</GoogleTestAdapterSettings>
<!-- Configurations for data collectors -->
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="Code Coverage" uri="datacollector://Microsoft/CodeCoverage/2.0" assemblyQualifiedName="Microsoft.VisualStudio.Coverage.DynamicCoverageDataCollector, Microsoft.VisualStudio.TraceCollector, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Configuration>
<CodeCoverage>
<Functions>
<Include>
<Function>^onnxruntime.*</Function> <!-- all code in the onnxruntime namespace -->
<Function>.*onnx_layout_transformation.*</Function>
</Include>
<Exclude>
<Function>^onnxruntime\:\:test.*</Function> <!-- exclude all code in the onnxruntime::test* namespaces -->
<Function>^onnxruntime\:\:MakeString<.*</Function> <!-- onnxruntime::MakeString<types...> -->
<Function>^onnxruntime\:\:MakeStringInternal<.*</Function> <!-- onnxruntime::MakeString<types...> -->
</Exclude>
</Functions>
<!--
<ModulePaths>
<Exclude>
<ModulePath>.*\\test\\*</ModulePath>
</Exclude>
</ModulePaths>
<Sources>
<Include>
<Source>.*\\core\\*</Source>
</Include>
</Sources>
-->
</CodeCoverage>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>