diff options
author | Fredrik Åslund <fredrik@fredrix.ladok.umu.se> | 2013-04-09 13:57:45 +0200 |
---|---|---|
committer | Fredrik Åslund <fredrik@fredrix.ladok.umu.se> | 2013-04-09 13:57:45 +0200 |
commit | c05db9c14b0ab9124d869f2bf2bf9f22ce918be8 (patch) | |
tree | 4b7b98c13436b6d58602414bdbc23d6a2b99e950 /Makefile | |
parent | 6c176efe6eee9c698eabcba709457b8bfd50b96c (diff) |
ansi colorize make test
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -132,7 +132,8 @@ swamid-ki-sll: @test -s swamid-ki-sll-1.0.xml && cp swamid-ki-sll-1.0.xml $(DEST) test: swamid2-deps - @for x in $(MXML); do xmllint --xinclude --nowarning --noout --path schema --schema schema.xsd $$x; done + @for x in $(MXML); do xmllint --xinclude --nowarning --noout --path schema --schema schema.xsd $$x 2>&1 ; done | sed 's/fails to validate/[1;31m&[0m/;s/validates/[1;32m&[0m/' clean: @rm -f *.xml *.tbs *.n + |