# HG changeset patch # User Jan Vrany # Date 1430542839 -7200 # Node ID cfbc9055c83b58e1f82d9deda3474309f47dfa38 # Parent c2ad34a08856cfd8f5ac3b5668b9ebea9f5a145a Removed tests from compiled packages to workaround bug in stc. stc does not compile { computed arrays } properly in all cases, resulting in messages being send to wrong objects. diff -r c2ad34a08856 -r cfbc9055c83b Make.proto --- a/Make.proto Sat May 02 06:18:36 2015 +0200 +++ b/Make.proto Sat May 02 07:00:39 2015 +0200 @@ -21,7 +21,7 @@ INCLUDE_TOP=$(TOP)/.. # subdirectories where targets are to be made: -SUBDIRS= analyzer tests parser/smalltalk parser/java compiler compiler/tests +SUBDIRS= analyzer parser/smalltalk parser/java compiler # subdirectories where Makefiles are to be made: diff -r c2ad34a08856 -r cfbc9055c83b bmake.bat --- a/bmake.bat Sat May 02 06:18:36 2015 +0200 +++ b/bmake.bat Sat May 02 07:00:39 2015 +0200 @@ -17,13 +17,6 @@ @popd @echo "***********************************" -@echo "Buildung stx/goodies/petitparser/tests -@echo "***********************************" -@pushd tests -@call bmake %1 %2 || exit /b "%errorlevel%" -@popd - -@echo "***********************************" @echo "Buildung stx/goodies/petitparser/parser/smalltalk @echo "***********************************" @pushd parser\smalltalk @@ -43,12 +36,3 @@ @pushd compiler @call bmake %1 %2 || exit /b "%errorlevel%" @popd - -@echo "***********************************" -@echo "Buildung stx/goodies/petitparser/compiler/tests -@echo "***********************************" -@pushd compiler\tests -@call bmake %1 %2 || exit /b "%errorlevel%" -@popd - - diff -r c2ad34a08856 -r cfbc9055c83b stx_goodies_petitparser.st --- a/stx_goodies_petitparser.st Sat May 02 06:18:36 2015 +0200 +++ b/stx_goodies_petitparser.st Sat May 02 07:00:39 2015 +0200 @@ -112,7 +112,10 @@ ^ #( #'stx:goodies/petitparser/analyzer' #'stx:goodies/petitparser/tests' - ) + #'stx:goodies/parsers/smalltalk' + #'stx:goodies/parsers/java' + #'stx:goodies/compiler' +) ! ! !stx_goodies_petitparser class methodsFor:'description - compilation'!