Skip to content

Commit 33bce72

Browse files
smarrrhys-h-walker
andcommitted
Ignore IntegrationTests when checking files for grammar compliance
Co-authored-by: Rhys Walker <[email protected]> Signed-off-by: Stefan Marr <[email protected]>
1 parent 24cc77a commit 33bce72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specification/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SOMParser.class: SOMParser.java
1313

1414
test: are-we-fast-yet SOMParser.class
1515
set -e; \
16-
find .. -name '*.som' -print0 | while read -d $$'\0' i; do \
16+
find .. -path "../IntegrationTests" -prune -o -name '*.som' -print0 | while read -d $$'\0' i; do \
1717
echo "$${i}"; \
1818
OUT=`java -cp antlr.jar:. org.antlr.v4.gui.TestRig SOM classdef -diagnostics "$${i}" 2>&1`; \
1919
if [ ! -z "$$OUT" ]; then \

0 commit comments

Comments
 (0)