@@ -32,7 +32,7 @@ def setUp(self):
3232 for flag in timeout_flags
3333 ]
3434
35- def test_trial_timeout (self ):
35+ def test_timeout (self ):
3636 raise NotImplementedError (
3737 "This method needs to be implemented in the derivative classes."
3838 )
@@ -42,7 +42,7 @@ class ASAP7TimeoutSmokeTest(BaseTimeoutSmokeTest):
4242 platform = "asap7"
4343 design = "gcd"
4444
45- def test_trial_timeout (self ):
45+ def test_timeout (self ):
4646 for command in self .commands :
4747 out = subprocess .run (command , shell = True , check = True )
4848 successful = out .returncode == 0
@@ -53,7 +53,7 @@ class SKY130HDTimeoutSmokeTest(BaseTimeoutSmokeTest):
5353 platform = "sky130hd"
5454 design = "gcd"
5555
56- def test_trial_timeout (self ):
56+ def test_timeout (self ):
5757 for command in self .commands :
5858 out = subprocess .run (command , shell = True , check = True )
5959 successful = out .returncode == 0
@@ -64,7 +64,7 @@ class IHPSG13G2TimeoutSmokeTest(BaseTimeoutSmokeTest):
6464 platform = "ihp-sg13g2"
6565 design = "gcd"
6666
67- def test_trial_timeout (self ):
67+ def test_timeout (self ):
6868 for command in self .commands :
6969 out = subprocess .run (command , shell = True , check = True )
7070 successful = out .returncode == 0
0 commit comments