diff options
author | Leif Johansson <leifj@sunet.se> | 2014-03-19 13:51:59 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2014-03-19 13:51:59 +0100 |
commit | 8acde93c3801b04839e3b99cf2e816fe5496c444 (patch) | |
tree | a19ac0ccbfdbfe432f726b8ebe0a673cb9c8a415 /Makefile | |
parent | 7ea96b0f936892fa9d424bcac23c8105bf01ca72 (diff) | |
parent | c731703949db26d4a540eda12e507a74d1bbc049 (diff) |
Merge branch 'master' of md-master.swamid.se:swamid-metadata
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -124,6 +124,8 @@ tidy: committest: test @echo "Checking for entity-categories in SPSSODescriptors" @for x in `find $(SRCDIRS) -name \*.xml`; do if cat $$x | sed 's;\(</*\)[a-z0-9]*:;\1;g' | xmllint --xpath /EntityDescriptor/SPSSODescriptor/Extensions/EntityAttributes - 2>/dev/null | grep -q entity-category ; then echo " $$x" ; fi ; done | grep . && exit 1 || true + @echo "Checking for entity-categories in IDPSSODescriptor" + @for x in `find $(SRCDIRS) -name \*.xml`; do if cat $$x | sed 's;\(</*\)[a-z0-9]*:;\1;g' | xmllint --xpath /EntityDescriptor/IDPSSODescriptor/Extensions/EntityAttributes - 2>/dev/null | grep -q entity-category ; then echo " $$x" ; fi ; done | grep . && exit 1 || true @echo "Checking for MDUI in EntityDescriptor/Extensions" @for x in `find $(SRCDIRS) -name \*.xml`; do if cat $$x | sed 's;\(</*\)[a-z0-9]*:;\1;g' | xmllint --xpath /EntityDescriptor/Extensions/UIInfo - 2>/dev/null | grep -q . ; then echo " $$x" ; fi ; done | grep . && exit 1 || true |