We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6b3bd commit 96d7915Copy full SHA for 96d7915
Makefile
@@ -53,7 +53,7 @@ test: test_short
53
test-all: test_short test_long
54
55
.PHONY: test_short
56
-test_short: test_renderer test_svg_elems test_symlinks test_filenames
+test_short: test_renderer test_optimization test_svg_elems test_symlinks test_filenames
57
58
.PHONY: test_long
59
test_long: test_xml_struct
@@ -66,6 +66,13 @@ test_renderer:
66
-e 'd="[a-zA-Z0-9 -.]+\s\.[a-zA-Z0-9 -.]+"' \
67
$(ICON_THEMES)
68
69
+.PHONY: test_optimization
70
+test_optimization:
71
+ # >>> Searching for unoptimized icons
72
+ @! LC_ALL=C grep -E -rl --include='*.svg' \
73
+ -e '^<\?xml' \
74
+ $(ICON_THEMES)
75
+
76
.PHONY: test_svg_elems
77
test_svg_elems:
78
# >>> Searching for icons with embedded objects
0 commit comments