Skip to content

Commit

Permalink
test_trial_timeout -> test_timeout
Browse files Browse the repository at this point in the history
Signed-off-by: luarss <[email protected]>
  • Loading branch information
luarss committed Oct 14, 2024
1 parent 4b45397 commit 0685085
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/AutoTuner/test/smoke_test_timeout.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def setUp(self):
for flag in timeout_flags
]

def test_trial_timeout(self):
def test_timeout(self):
raise NotImplementedError(
"This method needs to be implemented in the derivative classes."
)
Expand All @@ -42,7 +42,7 @@ class ASAP7TimeoutSmokeTest(BaseTimeoutSmokeTest):
platform = "asap7"
design = "gcd"

def test_trial_timeout(self):
def test_timeout(self):
for command in self.commands:
out = subprocess.run(command, shell=True, check=True)
successful = out.returncode == 0
Expand All @@ -53,7 +53,7 @@ class SKY130HDTimeoutSmokeTest(BaseTimeoutSmokeTest):
platform = "sky130hd"
design = "gcd"

def test_trial_timeout(self):
def test_timeout(self):
for command in self.commands:
out = subprocess.run(command, shell=True, check=True)
successful = out.returncode == 0
Expand All @@ -64,7 +64,7 @@ class IHPSG13G2TimeoutSmokeTest(BaseTimeoutSmokeTest):
platform = "ihp-sg13g2"
design = "gcd"

def test_trial_timeout(self):
def test_timeout(self):
for command in self.commands:
out = subprocess.run(command, shell=True, check=True)
successful = out.returncode == 0
Expand Down

0 comments on commit 0685085

Please sign in to comment.