@@ -244,7 +244,7 @@ class Integration(BaseModel):
244244 "--test:{extra_setup_dir}" ,
245245 "--write_test_file={extra_output_dir}/test.txt" ,
246246 ],
247- pool = PoolName ("mariner" )
247+ pool = PoolName ("mariner" ),
248248 ),
249249 "windows-libfuzzer" : Integration (
250250 template = TemplateType .libfuzzer ,
@@ -401,10 +401,13 @@ def try_info_get(data: Any) -> None:
401401 self .of .pools .create (name , OS .linux )
402402 self .logger .info ("creating scaleset for pool: %s" , name )
403403 self .of .scalesets .create (
404- name , pool_size , region = region , initial_size = pool_size , image = "MicrosoftCBLMariner:cbl-mariner:cbl-mariner-2-gen2:latest"
404+ name ,
405+ pool_size ,
406+ region = region ,
407+ initial_size = pool_size ,
408+ image = "MicrosoftCBLMariner:cbl-mariner:cbl-mariner-2-gen2:latest" ,
405409 )
406410
407-
408411 class UnmanagedPool :
409412 def __init__ (
410413 self ,
@@ -644,7 +647,7 @@ def launch(
644647 setup = Directory (os .path .join (setup , config .nested_setup_dir ))
645648
646649 job : Optional [Job ] = None
647-
650+
648651 job = self .build_job (
649652 duration , pool , target , config , setup , target_exe , inputs
650653 )
@@ -1277,7 +1280,7 @@ def check_logs_for_errors(self) -> None:
12771280
12781281 if seen_errors :
12791282 raise Exception ("logs included errors" )
1280-
1283+
12811284 def build_pool_name (self , os_type : str ) -> PoolName :
12821285 return PoolName (f"testpool-{ os_type } -{ self .test_id } " )
12831286
@@ -1592,13 +1595,6 @@ def try_setup(data: Any) -> None:
15921595 result = tester .check_jobs (poll = True , stop_on_complete_check = True )
15931596 if not result :
15941597 raise Exception ("jobs failed" )
1595- if skip_repro :
1596- self .logger .warning ("not testing crash repro" )
1597- else :
1598- launch_result , repros = tester .launch_repro ()
1599- result = tester .check_repro (repros )
1600- if not (result and launch_result ):
1601- raise Exception ("repros failed" )
16021598
16031599 tester .check_logs_for_errors ()
16041600
0 commit comments