Skip to content

Commit

Permalink
gui: Default to the RRUL test when opening the new test dialog
Browse files Browse the repository at this point in the history
RRUL is probably the most commonly used test in Flent, so let's default to that
when running a test from the GUI.

Signed-off-by: Toke Høiland-Jørgensen <[email protected]>
  • Loading branch information
tohojo committed Jan 17, 2024
1 parent 1f6452a commit 2fb38ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flent/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,9 @@ def __init__(self, parent, settings, log_queue):
self.pid = None
self.aborted = False

if self.settings.NAME is None:
self.settings.NAME = "rrul"

tests = ListTests.get_tests(settings)
max_len = max([len(t[0]) for t in tests])
for t, desc in tests:
Expand Down

0 comments on commit 2fb38ed

Please sign in to comment.