Toyomasa Watarai
/
Mbed-example-WS-W27
Diff: simple-mbed-cloud-client/mbed-cloud-client/mbed-client-pal/Test/pal_make.py
- Revision:
- 0:119624335925
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/simple-mbed-cloud-client/mbed-cloud-client/mbed-client-pal/Test/pal_make.py Sat Jun 30 01:40:30 2018 +0000 @@ -0,0 +1,19 @@ +import sys +import subprocess +import re + +pal_warn = re.compile("Warning.*pal") +pal_dont_treat_as_warn = re.compile("Warning.*PAL_INSECURE") + +proc = subprocess.Popen(sys.argv[1].split(), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + +for line in proc.stdout: + print line + if len(pal_warn.findall(line)) > 0: + if not len(pal_dont_treat_as_warn.findall(line)) > 0: + raise Exception("No Warnings Allowed in Pal") +proc.wait() +print "mbed compile returned {}".format(proc.returncode) +if not proc.returncode == 0: + raise Exception("mbed compile failed") +