# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
+from __future__ import print_function
import sys
import os
import argparse
from threading import Timer
def kill(process):
- print "ERROR: Test app timed out"
+ print("ERROR: Test app timed out")
process.kill()
if "RTE_SDK" in os.environ:
args = parser.parse_args()
if not os.path.exists(args.testapp_path):
- print "No such file: " + args.testapp_path
+ print("No such file: " + args.testapp_path)
sys.exit(1)
params = [args.testapp_path]