diff -r a949c4fe44df -r a8feb0f47574 compiler/tests/PPCOptimizeChoicesTest.st --- a/compiler/tests/PPCOptimizeChoicesTest.st Sat Aug 29 07:56:14 2015 +0100 +++ b/compiler/tests/PPCOptimizeChoicesTest.st Fri Sep 04 14:06:56 2015 +0100 @@ -22,14 +22,19 @@ visitor := PPCOptimizeChoices new. options := PPCCompilationOptions default - profile: true. + profile: true; + generate: false; + tokenize: false; + yourself. - configuration := PPCPluggableConfiguration on: [ :_self | - _self runPass: PPCCacheFirstFollowPass. - ]. + configuration := PPCConfiguration new. + configuration passes: + { + PPCCacheFirstFollowPass. + }. configuration options: options. - "Modified: / 29-08-2015 / 07:30:28 / Jan Vrany " + "Modified: / 04-09-2015 / 16:21:48 / Jan Vrany " ! testHasCommonPrefix