X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=scripts%2Flaunchcontrol_build.py;h=95a0ff8bb8489869fb984f879cc4a11675c7ff99;hb=4b11526e6ad8cc0f1d5a59a6d3f27407bb8302d8;hp=97c2adbdc775522c23f4c767cadf5bbf2cf71e4e;hpb=38611cff1bef4332dc1106706c6bd9ced62cff53;p=platform%2Fupstream%2FVK-GL-CTS.git diff --git a/scripts/launchcontrol_build.py b/scripts/launchcontrol_build.py index 97c2adb..95a0ff8 100644 --- a/scripts/launchcontrol_build.py +++ b/scripts/launchcontrol_build.py @@ -57,7 +57,7 @@ def buildWithMake (workingDir): pushWorkingDir(workingDir) # CMake docs advised this to be the best magic formula... threadCount = multiprocessing.cpu_count() + 1 - print "Invoke make with %d threads" % threadCount + print("Invoke make with %d threads" % threadCount) execute(["make", "-j%d" % threadCount]) popWorkingDir() @@ -92,9 +92,9 @@ def parseOptions (): if __name__ == "__main__": options = parseOptions() - print "\n############################################################" - print "# %s %s BUILD" % (options.config.upper(), options.buildType.upper()) - print "############################################################\n" + print("\n############################################################") + print("# %s %s BUILD" % (options.config.upper(), options.buildType.upper())) + print("############################################################\n") launchControlConfig = BUILD_CONFIGS[options.config] buildDir = os.path.realpath(os.path.normpath(options.buildDir)) @@ -106,4 +106,4 @@ if __name__ == "__main__": genMustpassLists(MUSTPASS_LISTS, MAKEFILE_GENERATOR, config) checkForChanges() - print "\n--- BUILD SCRIPT COMPLETE" + print("\n--- BUILD SCRIPT COMPLETE")