diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-10-06 12:36:57 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-10-06 12:36:57 +0000 |
commit | 53d75277f46f49b92f4e6c83aa8bea3262888509 (patch) | |
tree | 463370789d7d1ab72a110f6250b6db27ac42f94b /testshl2 | |
parent | 912039b7e4167301bb658601e54931dfc61a96bb (diff) |
INTEGRATION: CWS qadev12 (1.4.2); FILE MERGED
2003/09/25 15:11:53 lla 1.4.2.2: #112157# bug in codegen.pl, if lot of package.class names will given
2003/09/25 13:57:45 lla 1.4.2.1: #112157# ';' lost at registerAllTestFunctions
Diffstat (limited to 'testshl2')
-rw-r--r-- | testshl2/source/codegen/codegen.pl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testshl2/source/codegen/codegen.pl b/testshl2/source/codegen/codegen.pl index 7dd036230aaa..796efe1297f6 100644 --- a/testshl2/source/codegen/codegen.pl +++ b/testshl2/source/codegen/codegen.pl @@ -306,7 +306,10 @@ sub walkThroughJobFile $sCurrentClass = $sClassName; generateNewClass($sClassName); } - push(@sMethodNames, $sMethodName); + if ($sMethodName) + { + push(@sMethodNames, $sMethodName); + } } } } @@ -557,7 +560,7 @@ sub main open(EXPORTMAP, ">export.map") || die "can't create export.map"; print EXPORTMAP "UDK_3.1 {\n"; print EXPORTMAP " global:\n"; - print EXPORTMAP " registerAllTestFunction\n"; + print EXPORTMAP " registerAllTestFunction;\n"; print EXPORTMAP "\n"; print EXPORTMAP " local:\n"; print EXPORTMAP " *;\n"; |