Subversion Repositories DevTools

Rev

Rev 4778 | Rev 4787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4778 Rev 4781
Line 194... Line 194...
194
        my $recipeName = 'post_utf_processing';
194
        my $recipeName = 'post_utf_processing';
195
        ToolsetAddUnitTestPostProcess($recipeName);
195
        ToolsetAddUnitTestPostProcess($recipeName);
196
 
196
 
197
        #
197
        #
198
        #   Create the Post Unit Test Recipe
198
        #   Create the Post Unit Test Recipe
199
        #   Tool will need to know
-
 
200
        #       PKGDIR
-
 
201
        #       INTERFACEDIR
-
 
202
        #       LOCALDIR
-
 
203
        #       GBE_MAKE_TYPE
-
 
204
        #       GBE_PLATFORM
-
 
205
        #       GBE_HOST
-
 
206
        #       GBE_ROOT as GBE_ROOT_ABS
-
 
207
        #       CURDIR
-
 
208
        #
199
        #
209
        my $me = MakeEntry::New (*MAKEFILE, $recipeName, '--Phony', '--Raw' );
200
        my $me = MakeEntry::New (*MAKEFILE, $recipeName, '--Phony' );
-
 
201
 
-
 
202
        #   Insert test EnvVars
-
 
203
        #       In the Java toolset these are not as useful in a Jats RunTest
-
 
204
        $me->AddDefn('export GBE_UTFNAME', 'junit4Test');
-
 
205
        $me->AddDefn('export GBE_UTFUID', '$(MAKEFILEUID)' . '_' . '1');
-
 
206
 
210
        #$me->AddRecipe( "ifdef GBE_ABT" );
207
        $me->SectionDef ('UTF_POSTPROCESS');
211
        #$me->AddRecipe( "endif" );
208
        $me->AddRecipe  ( [
212
        $me->AddRecipe( "\t\$(GBE_PERL) -Mjats_runutf -e processUtf -- \$(VERBOSE_OPT) -filter=junit4 -root=\$(GBE_ROOT_ABS) -target=\$(GBE_PLATFORM) -pkgdir=\$(PKGDIR) -local=\$(LOCALDIR) -interface=\$(INTERFACEDIR)" );
209
                           '$(GBE_PERL) -Mjats_runutf -e processUtf -- ',
-
 
210
                           '$(VERBOSE_OPT)',
-
 
211
                           '-filter=junit4',
-
 
212
                           '-root=$(GBE_ROOT_ABS)',
-
 
213
                           '-target=$(GBE_PLATFORM)', 
-
 
214
                           '-pkgdir=$(PKGDIR)',
-
 
215
                           '-local=$(LOCALDIR)',
-
 
216
                           '-interface=$(INTERFACEDIR)' 
-
 
217
                          ]);
213
        $me->Print();
218
        $me->Print();
214
 
219
 
215
        #   Clean up files that look like Junit output files
220
        #   Clean up files that look like Junit output files
216
        ToolsetGenerate( 'TEST-*.xml' );
221
        ToolsetGenerate( 'TEST-*.xml' );
217
    }
222
    }