Lines Matching defs:script
27 Represents a tlsfuzzer test script.
28 name: the script's name
29 args: arguments to feed to the script
311 # broken test script
518 # broken test script
681 script = test.name
687 print(script , end=' ' if args else '')
692 print(script)
694 print(f"{script[:68]:<72}", end=" ", flush=True)
696 scriptpath = os.path.join(self.scriptdir, script)
698 self.missing.append(script)
707 self.stats.append((script, end - start))
712 self.failed.append(script)
732 for (script, time) in self.stats:
733 print(f"{round(time, 2):6.2f} {script}")
807 # Extract the arguments we pass to script
808 def defaultargs(script, has_tls1_3):
810 (test for group in all_groups for test in group if test.name == script),
831 print("Usage: python3 tlsfuzzer.py [-flmnstv] [-p port] [script [test...]]")
898 (dir, script) = os.path.split(args[0])
902 testargs = defaultargs(script, tls_server.has_tls1_3)
905 tests.add("test from command line", [Test(script, testargs + args[1:])])