@@ -22,14 +22,12 @@ public void DefaultOptions()
2222 {
2323 options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
2424 Assert . True ( options . Cache ) ;
25- Assert . False ( options . CIL ) ;
2625 Assert . Null ( options . Framework ) ;
2726 Assert . Null ( options . CompilerName ) ;
2827 Assert . Empty ( options . CompilerArguments ) ;
2928 Assert . True ( options . Threads >= 1 ) ;
3029 Assert . Equal ( Verbosity . Info , options . LegacyVerbosity ) ;
3130 Assert . False ( options . Console ) ;
32- Assert . False ( options . PDB ) ;
3331 Assert . False ( options . Fast ) ;
3432 Assert . Equal ( TrapWriter . CompressionMode . Brotli , options . TrapCompression ) ;
3533 }
@@ -48,25 +46,6 @@ public void Cache()
4846 Assert . False ( options . Cache ) ;
4947 }
5048
51- [ Fact ]
52- public void CIL ( )
53- {
54- options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
55- Assert . False ( options . CIL ) ;
56-
57- Environment . SetEnvironmentVariable ( "CODEQL_EXTRACTOR_CSHARP_OPTION_CIL" , "false" ) ;
58- options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
59- Assert . False ( options . CIL ) ;
60-
61- Environment . SetEnvironmentVariable ( "CODEQL_EXTRACTOR_CSHARP_OPTION_CIL" , "true" ) ;
62- options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
63- Assert . True ( options . CIL ) ;
64-
65- Environment . SetEnvironmentVariable ( "CODEQL_EXTRACTOR_CSHARP_OPTION_CIL" , null ) ;
66- options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
67- Assert . False ( options . CIL ) ;
68- }
69-
7049 [ Fact ]
7150 public void CompilerArguments ( )
7251 {
@@ -141,13 +120,6 @@ public void Console()
141120 Assert . True ( options . Console ) ;
142121 }
143122
144- [ Fact ]
145- public void PDB ( )
146- {
147- options = CSharp . Options . CreateWithEnvironment ( new string [ ] { "--pdb" } ) ;
148- Assert . True ( options . PDB ) ;
149- }
150-
151123 [ Fact ]
152124 public void Compiler ( )
153125 {
0 commit comments