From 3bf9df6b2785fa6d951086978a3e66f49427166a Mon Sep 17 00:00:00 2001 From: FluorescentCIAAfricanAmerican <0934gj3049fk@protonmail.com> Date: Wed, 22 Apr 2020 12:56:21 -0400 Subject: 1 --- utils/source_builder/RunTestScripts.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 utils/source_builder/RunTestScripts.py (limited to 'utils/source_builder/RunTestScripts.py') diff --git a/utils/source_builder/RunTestScripts.py b/utils/source_builder/RunTestScripts.py new file mode 100644 index 0000000..a7f7b49 --- /dev/null +++ b/utils/source_builder/RunTestScripts.py @@ -0,0 +1,32 @@ + +import sys, os, string, re, time, smtplib, getopt, P4, SystemHelpers + +def RunResultingTestFiles(listTestFiles, szErrorResults ): + while len(listTestFiles): + szFilename = listTestFiles.pop() + os.system( szFilename ) + szErrorResult = os.popen( "type errors.txt" ).read() + if szErrorResult: + szErrorResult = "Script failed: " + szFilename + "\n" + szErrorResult + os.remove("errors.txt") + szErrorResults += szErrorResult + return szErrorResults + + +if __name__ == '__main__': + szErrorResults = "" + SystemHelpers.ChangeDir("\\src\\unittests\\autotestscripts\\") + os.environ['PATH'] += os.pathsep + "d:\\main\\src\\devtools\\bin\\" + \ + os.pathsep + "d:\\main\\game\\bin\\" + listTestFiles = SystemHelpers.ListFiles(".py") + szErrorResults += RunResultingTestFiles(listTestFiles, szErrorResults) + listTestFiles = SystemHelpers.ListFiles(".cmd") + szErrorResults += RunResultingTestFiles(listTestFiles, szErrorResults) + listTestFiles = SystemHelpers.ListFiles(".bat") + szErrorResults += RunResultingTestFiles(listTestFiles, szErrorResults) + listTestFiles = SystemHelpers.ListFiles(".pl") + szErrorResults += RunResultingTestFiles(listTestFiles, szErrorResults) + + + print szErrorResults + -- cgit v1.2.3