We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3e054 commit 994f4c5Copy full SHA for 994f4c5
regtests/testsuite.py
@@ -40,6 +40,11 @@ class TPTestsuite(Testsuite):
40
test_driver_map = {"basic": BasicTestDriver}
41
default_driver = "basic"
42
43
+ def test_name(self, test_dir):
44
+ # Return the last directory name as the test name.
45
+ test_directory_name = test_dir.split("/")[-1]
46
+ return test_directory_name
47
+
48
def __init__(self):
49
super().__init__()
50
target = os.environ.get("TARGET")
0 commit comments