File tree Expand file tree Collapse file tree 4 files changed +0
-21
lines changed Expand file tree Collapse file tree 4 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,6 @@ version: 1.22.1
4
4
column_kind : " utf16"
5
5
extra_env_vars :
6
6
DOTNET_GENERATE_ASPNET_CERTIFICATE : " false"
7
- COR_ENABLE_PROFILING : " 1"
8
- COR_PROFILER : " {A3C70A64-7D41-4A94-A3F6-FD47D9259997}"
9
- COR_PROFILER_PATH_64 : " ${env.CODEQL_EXTRACTOR_CSHARP_ROOT}/tools/${env.CODEQL_PLATFORM}/clrtracer64${env.CODEQL_PLATFORM_DLL_EXTENSION}"
10
- CORECLR_ENABLE_PROFILING : " 1"
11
- CORECLR_PROFILER : " {A3C70A64-7D41-4A94-A3F6-FD47D9259997}"
12
- CORECLR_PROFILER_PATH_64 : " ${env.CODEQL_EXTRACTOR_CSHARP_ROOT}/tools/${env.CODEQL_PLATFORM}/clrtracer64${env.CODEQL_PLATFORM_DLL_EXTENSION}"
13
7
file_types :
14
8
- name : cs
15
9
display_name : C# sources
Original file line number Diff line number Diff line change @@ -99,12 +99,6 @@ public static ExitCode Run(string[] args)
99
99
100
100
using var logger = MakeLogger ( options . Verbosity , options . Console ) ;
101
101
102
- if ( Environment . GetEnvironmentVariable ( "SEMMLE_CLRTRACER" ) == "1" && ! options . ClrTracer )
103
- {
104
- logger . Log ( Severity . Info , "Skipping extraction since already extracted from the CLR tracer" ) ;
105
- return ExitCode . Ok ;
106
- }
107
-
108
102
var canonicalPathCache = CanonicalPathCache . Create ( logger , 1000 ) ;
109
103
var pathTransformer = new PathTransformer ( canonicalPathCache ) ;
110
104
Original file line number Diff line number Diff line change @@ -27,11 +27,6 @@ public sealed class Options : CommonOptions
27
27
/// </summary>
28
28
public IList < string > CompilerArguments { get ; } = new List < string > ( ) ;
29
29
30
- /// <summary>
31
- /// Holds if the extractor was launched from the CLR tracer.
32
- /// </summary>
33
- public bool ClrTracer { get ; private set ; } = false ;
34
-
35
30
/// <summary>
36
31
/// Holds if assembly information should be prefixed to TRAP labels.
37
32
/// </summary>
@@ -87,9 +82,6 @@ public override bool HandleFlag(string flag, bool value)
87
82
{
88
83
switch ( flag )
89
84
{
90
- case "clrtracer" :
91
- ClrTracer = value ;
92
- return true ;
93
85
case "assemblysensitivetrap" :
94
86
AssemblySensitiveTrap = value ;
95
87
return true ;
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ public void DefaultOptions()
29
29
Assert . True ( options . Threads >= 1 ) ;
30
30
Assert . Equal ( Verbosity . Info , options . Verbosity ) ;
31
31
Assert . False ( options . Console ) ;
32
- Assert . False ( options . ClrTracer ) ;
33
32
Assert . False ( options . PDB ) ;
34
33
Assert . False ( options . Fast ) ;
35
34
Assert . Equal ( TrapWriter . CompressionMode . Brotli , options . TrapCompression ) ;
You can’t perform that action at this time.
0 commit comments