leo hendrickson / Mbed OS example-Ethernet-mbed-Cloud-connect

simple-mbed-cloud-client/mbed-cloud-client/mbed-client-pal/Test/TESTS/pal_make.py

Committer:
leothedragon
Date:
2021-05-04
Revision:
0:8f0bb79ddd48

File content as of revision 0:8f0bb79ddd48:

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")