summaryrefslogtreecommitdiffstats
path: root/linux_dpdk/cov.py
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2015-12-28 13:55:13 +0200
committerHanoh Haim <hhaim@cisco.com>2015-12-28 13:55:13 +0200
commita4ba574880dbfb199eaf54ddccff4565b30d3a7d (patch)
tree58edda4b7e370eeaa79e57c51d79dc654e246a1f /linux_dpdk/cov.py
parent5dc902232f12e98c9e0138f285c84e466ea6b518 (diff)
minor script fix
Diffstat (limited to 'linux_dpdk/cov.py')
-rw-r--r--linux_dpdk/cov.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux_dpdk/cov.py b/linux_dpdk/cov.py
index 6d23842c..e3177d5f 100644
--- a/linux_dpdk/cov.py
+++ b/linux_dpdk/cov.py
@@ -94,10 +94,12 @@ def upload ():
ver=get_build_num_dis ()
cmd='curl --form token=fRIZZCAGD9TnkSiuxXiEAQ --form email='+cov_driver.user_name+'@cisco.com --form file=@./'+COV_FILE_OUT+' --form version="'+ver+'" --form description="'+ver+'" https://scan.coverity.com/builds?project=cisco-system-traffic-generator%2Ftrex-core'
run_cmd(cmd);
+ print "You should get an email with the results"
+ print "or visit http://scan.coverity.com/projects/cisco-system-traffic-generator-trex-core?tab=overview"
def check_env (env,err):
if os.environ.has_key(env) == False :
- s= "ERROR you should define %s, %" % (env,err)
+ s= "ERROR you should define %s, %s" % (env,err)
raise Exception(s);