Skip to content

Commit 0685085

Browse files
committed
test_trial_timeout -> test_timeout
Signed-off-by: luarss <[email protected]>
1 parent 4b45397 commit 0685085

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/AutoTuner/test/smoke_test_timeout.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)