@@ -32,7 +32,7 @@ def setUp(self):
32
32
for flag in timeout_flags
33
33
]
34
34
35
- def test_trial_timeout (self ):
35
+ def test_timeout (self ):
36
36
raise NotImplementedError (
37
37
"This method needs to be implemented in the derivative classes."
38
38
)
@@ -42,7 +42,7 @@ class ASAP7TimeoutSmokeTest(BaseTimeoutSmokeTest):
42
42
platform = "asap7"
43
43
design = "gcd"
44
44
45
- def test_trial_timeout (self ):
45
+ def test_timeout (self ):
46
46
for command in self .commands :
47
47
out = subprocess .run (command , shell = True , check = True )
48
48
successful = out .returncode == 0
@@ -53,7 +53,7 @@ class SKY130HDTimeoutSmokeTest(BaseTimeoutSmokeTest):
53
53
platform = "sky130hd"
54
54
design = "gcd"
55
55
56
- def test_trial_timeout (self ):
56
+ def test_timeout (self ):
57
57
for command in self .commands :
58
58
out = subprocess .run (command , shell = True , check = True )
59
59
successful = out .returncode == 0
@@ -64,7 +64,7 @@ class IHPSG13G2TimeoutSmokeTest(BaseTimeoutSmokeTest):
64
64
platform = "ihp-sg13g2"
65
65
design = "gcd"
66
66
67
- def test_trial_timeout (self ):
67
+ def test_timeout (self ):
68
68
for command in self .commands :
69
69
out = subprocess .run (command , shell = True , check = True )
70
70
successful = out .returncode == 0
0 commit comments