Merge pull request #322 from robertbaldyga/fix-ut-deprecated-commands-module

ut: Replace deprecated 'commands' module with 'subprocess'
This commit is contained in:
Jan Musiał 2019-12-11 08:20:39 +00:00 committed by GitHub
commit 1b1bbbe4c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,15 +5,19 @@
# SPDX-License-Identifier: BSD-3-Clause-Clear
#
import commands
import subprocess
import sys
import os
args = ' '.join(sys.argv[1:])
script_path = os.path.dirname(os.path.realpath(__file__))
framework_script_path = os.path.join(script_path, "../framework/add_new_test_file.py")
framework_script_path = os.path.normpath(framework_script_path)
status, output = commands.getstatusoutput(framework_script_path + " " + args)
result = subprocess.run(framework_script_path + " " + args, shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
status = result.returncode
output = result.stdout.decode("ASCII", errors='ignore')
print(output)