Update contrib.
2 rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 rem This library is free software; you can redistribute it and/or
5 rem modify it under the terms of the GNU Lesser General Public
6 rem License as published by the Free Software Foundation; either
7 rem version 2 of the License, or (at your option) any later version.
9 rem This library is distributed in the hope that it will be useful,
10 rem but WITHOUT ANY WARRANTY; without even the implied warranty of
11 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 rem Lesser General Public License for more details.
14 rem You should have received a copy of the GNU Lesser General Public
15 rem License along with this library; if not, write to the
16 rem Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 rem Boston, MA 02111-1307, USA.
22 @perl -x GenATSModules.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
32 my $target = "winsspd";
36 my $combinedSession = "no";
38 my $noXmlsGenList = "play_new";
43 if(scalar @ARGV ==0 || $ARGV[0] =~ /[\-\\\/][h\?]/ || $ARGV[0] =~ /help/ )
46 genatsmodules.bat - hardcoded script to generate ATSINPUT folders for mobileruntime and ngi projects
49 Create ATSINPUT for the default testsuite based on
50 location it is executed from place in stdlibs/internal
51 and run and it generates ATSINPUT for stdlibs
52 similiarly place it in ssl/internal or glib/internal or
53 ngi/internal and run to generate ATSINPUT for ssl, glib
56 genatsmodules [libname]
57 where libname can be stdlibs, ssl, glib, etc. Creates
58 ats test drop for given library. Valid from any internal
59 folder of mobileruntime.
63 create ngi testsuite. Valid inside ngi/internal only
65 genatsmodules play_new
66 create play_new testsuite. Valid inside play_new/internal only
71 create ltp testsuite. Valid inside stdlibs/internal only
74 create lsb testsuite. Valid inside stdlibs/internal only
77 create stdcpp testsuite. Valid inside stdcpp/internal only
79 genatsmodules [libname] install
80 where libname can be stdlibs, ssl, glib, ltp, lsb to create a
81 ATSINPUT where the dependent mobileruntime libraries are also
82 copied and used (It copies the dependent libraries using the
85 genatsmodules session [libname] [target]
86 where libname is any of the standard libs as shown above and
87 target can be winsspd, winscw, scarfe, zeus etc. to create
88 session files for scarfe, winsspd etc.
90 genatsmodules session combined [target]
91 will look at the existing ATSINPUT(which can have any
92 combination of created components and create a combined
93 session file. This way you get increased flexibility in
94 the libraries you choose to combine into a single session
95 file. If the target is a hardware target(that is not winsspd
96 or winscw), the script will first attempt to find a target
97 specific component file and if not found, the generic hw
102 ATSINPUT creation is a 2 stage process. First we create
103 the components and then we run (for example)
104 "genatsmodules session stdlibs winscw" and
105 "genatsmodules session stdlibs scarfe" to create the
113 if(scalar @ARGV == 1)
115 if($ARGV[0] eq "session")
117 die("parameter session must be followed by libname and target platform");
124 elsif(scalar @ARGV == 2)
126 if($ARGV[0] eq "session")
128 die("parameter session must be followed by libname and target platform");
130 elsif($ARGV[1] eq "install")
135 elsif($ARGV[1] eq "armv5")
139 elsif($ARGV[1] eq "winscw")
145 die("second parameter after target platform $ARGV[0] can only be \"install\" ");
148 elsif(scalar @ARGV == 3)
150 if($ARGV[0] ne "session")
152 die("invalid combination of parameters. Program expected 1st parameter to be \"session\" ");
160 if($suite eq "combined")
162 $combinedSession = "yes";
167 elsif(scalar @ARGV == 4)
169 if($ARGV[0] ne "session")
171 die("invalid combination of parameters. Program expected 1st parameter to be \"session\" ");
178 $sdkversion = $ARGV[3];
179 if($suite eq "combined")
181 $combinedSession = "yes";
187 die("program recieved too many parameters!");
188 }#end of commandline processing
192 my $rootDrive = substr(getcwd(), 0,2);
193 my $templateRoot = getcwd();
195 if(rindex($templateRoot, "tsrc") == -1 && ($suite ne "stdlibs" && $suite ne "pcts" ) )
197 die("Please run the script from the appropriate internal folder in the mobileruntime /omerta project!!");
202 my $srcPrefix = getcwd();
203 $srcPrefix =~ /(.*)tsrc.*/;
205 if(rindex($templateRoot, "stdlibs") != -1)
207 $srcPrefix =~ /(.*)stdlibs.*/;
210 if($suite eq "glib-2.20.4")
212 $templateRoot = $srcPrefix."/glib-2.20.4/";
214 elsif($suite eq "ssl")
216 $templateRoot = $srcPrefix."/ssl/tsrc/";
218 elsif($suite eq "ngi" && $session ne "yes")
220 print "ngi atsinput creation not supported from mobileruntime\n";
225 if(rindex($templateRoot, "glib-2.20.4") != -1)
227 $suite = "glib-2.20.4";
229 elsif(rindex($templateRoot, "ssl") != -1)
233 elsif(rindex($templateRoot, "ngi") != -1)
240 my $optsGroupPath = $templateRoot."/ts/ltp/opts/group/";
241 #$optsGroupPath = getcwd()."/ts/ltp/opts/group/";
242 my $ltpPath =$templateRoot."/ts/ltp/";
243 my $stdcppPath =$templateRoot."/testapps/stlport/";
244 my @stdexeList = ("gnu","tstdcpp","stdcxx/tstapps");
245 #my $gnuPath =getcwd()."/testapps/gnu/";
246 #my $tstdcppPath =getcwd()."/testapps/tstdcpp/";
247 my $ATSRoot = getcwd()."\\ATSINPUT";
249 my @generatedModules;
252 my $TDIR = "\\internal\\testapps\\";
254 my @libcModules = ( "libc_loc_blr", "libc_time_blr", "libc_db_blr","tctype", "tifioctls", "tinet",
255 "tlibcwchar", "tlink", "tmkfifo", "tmmap", "tmsgqueue",
256 "tnetdb", "tpipe","tregex", "tsemaphore", "tshm","tsocket" ,
257 "tstdio", "tstdlib", "tstring", "tsyscalls",
258 "tsyssim", "twctype", "tselect", "tsysunistd", "twideapis", "twopen", "twchar",
262 my @libdlModules = ("tlibdl");
263 my @libmModules = ("libm_double_blr", "libm_float_blr","libm_ldouble_blr");
266 my @pthreadModules = ( "testcondbroadcast", "testconddestroy", "testcondinit", "testcondsignal", "testcondtimedwait", "testcondwait",
267 "tmutex", "tpthread", "testpthreadonce", "testsemclose", "testsemdestroy", "testsemgetvalue", "testseminit", "testsemopen", "testsempost",
268 "testsemtimedwait", "testsemtrywait", "testsemunlink", "testsemwait");
271 my @stdliblist = ( "libc", "libpthread", "libdl", "libm", "libz", "libcrypt");
272 my @dllList = ("backend.dll", "libc.dll", "LibCIpcClient.dll", "LibCIpcServer.exe", "libdl.dll", "libm.dll", "libpthread.dll", "libcrypt.dll", "libz.dll", "liblogger.dll");
276 ["fstream1_input.txt", "stlport_fstream", "/../internal/testapps/doc/", "/General/", "C:\\TestFramework\\tstdcpp"],
277 ["nextperm1_good.txt", "stlport_nextprm", "/../internal/testapps/doc/", "/General/", "C:\\TestFramework\\tstdcpp"],
278 ["nextperm2_good.txt", "stlport_nextprm", "/../internal/testapps/doc/", "/General/", "C:\\TestFramework\\tstdcpp"],
279 ["ostmit_good.txt", "stlport_ostmit", "/../internal/testapps/doc/", "/General/", "C:\\TestFramework\\tstdcpp"],
280 ["seek.txt", "stlport_seek", "/../internal/testapps/doc/", "/General/", "C:\\TestFramework\\tstdcpp"],
281 ["istream_extractor_other-1.tst","istream_extractor_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
282 ["istream_extractor_other-1.txt","istream_extractor_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
283 ["istream_extractor_other-2.tst","istream_extractor_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
284 ["istream_unformatted-1.tst","istream_unformatted", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
285 ["istream_unformatted-1.txt","istream_unformatted", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
286 ["istream_unformatted-2.tst","istream_unformatted", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
287 ["ostream_inserter_char-1.tst","ostream_inserter_char", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
288 ["ostream_inserter_other-1.tst","ostream_inserter_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
289 ["ostream_inserter_other-2.tst","ostream_inserter_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
290 ["istream_extractor_other-1.tst","w_istream_extractor_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
291 ["istream_extractor_other-1.txt","w_istream_extractor_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
292 ["istream_extractor_other-2.tst","w_istream_extractor_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
293 ["istream_unformatted-1.tst","w_istream_unformatted", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
294 ["istream_unformatted-1.txt","w_istream_unformatted", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
295 ["istream_unformatted-2.tst","w_istream_unformatted", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
296 ["ostream_inserter_char-1.tst","w_ostream_inserter_char", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
297 ["ostream_inserter_other-1.tst","w_ostream_inserter_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
298 ["ostream_inserter_other-2.tst","w_ostream_inserter_other", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
299 ["filebuf_members-1.tst","filebuf_members", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
300 ["filebuf_members-1.txt","filebuf_members", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
301 ["filebuf_virtuals-1.tst","filebuf_virtuals", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
302 ["filebuf_virtuals-1.txt","filebuf_virtuals", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
303 ["filebuf_virtuals-2.tst","filebuf_virtuals", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
304 ["filebuf_virtuals-3.tst","filebuf_virtuals", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
305 ["ifstream_members-1.tst","ifstream_members", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
306 ["ifstream_members-1.txt","ifstream_members", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
307 ["ios_base_members_static-1.tst","ios_base_members_static", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
308 ["istream_seeks-1.tst","istream_seeks", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
309 ["istream_seeks-1.txt","istream_seeks", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
310 ["istream_seeks-2.tst","istream_seeks", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
311 ["istream_seeks-3.tst","istream_seeks", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
312 ["ofstream_members-1.tst","ofstream_members", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
313 ["ostream_inserter_char-1.txt","ostream_inserter_char", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
314 ["ostream_seeks-1.tst","ostream_seeks", "/../internal/testapps/gnu/io/doc/", "/General/", "C:\\TestFramework\\gnu"],
315 ["infile_auto.txt","multi_thread_auto", "/../internal/testapps/doc/", "/General/", "C:\\TestFramework\\tstdcpp"],
319 ["valid-1.gmarkup", "markup_test", "/epoc32/winscw/c/", "/General/", "C:"],
320 ["valid-01.xbel", "bookmarkfile_test", "/epoc32/winscw/c/", "/General/", "C:"],
321 ["iochannel-test-infile", "iochannel_test", "/epoc32/winscw/c/", "/General/", "C:"],
322 ["casemap.txt", "unicode_caseconv", "/epoc32/winscw/c/", "/General/", "C:"],
323 ["casefold.txt", "unicode_caseconv", "/epoc32/winscw/c/", "/General/", "C:"],
324 ["utf8.txt", "unicode_encoding","/epoc32/winscw/c/", "/General/", "C:"],
325 ["collate-1.unicode", "unicode_collate","/epoc32/winscw/c/", "/General/", "C:"],
326 ["NormalizationTest.txt", "unicode_normalize","/epoc32/winscw/c/", "/General/", "C:"],
327 ["4096-random-bytes", "strfuncs", "/epoc32/winscw/c/", "/General/", "C:"],
328 ["helloworld.exe", "spawn_test","/epoc32/release/armv5/urel/", "/armv5_urel/", "C:\\sys\\bin"],
329 ["helloworld.exe", "spawn_test","/epoc32/release/winscw/udeb/", "/winscw_udeb/", "Z:\\sys\\bin"],
331 ["libmoduletestplugin_a.dll", "module_test","/epoc32/release/armv5/urel/", "/armv5_urel/", "C:\\sys\\bin"],
332 ["libmoduletestplugin_a.dll", "module_test","/epoc32/release/winscw/udeb/", "/winscw_udeb/", "Z:\\sys\\bin"],
334 ["libmoduletestplugin_b.dll", "module_test","/epoc32/release/armv5/urel/", "/armv5_urel/", "C:\\sys\\bin"],
335 ["libmoduletestplugin_b.dll", "module_test","/epoc32/release/winscw/udeb/", "/winscw_udeb/", "Z:\\sys\\bin"],
341 ["Test.txt", "ngi_sa_runtimetester", "/EPOC32/winscw/c/Private/10202be9/", "/General/", ""],
342 ["sa_input_repository.txt", "shared","/EPOC32/armv5/c/TestFramework/", "/armv5_urel/", ""],
343 ["sa_input_repository.txt", "shared","/EPOC32/winscw/c/TestFramework/", "/winscw_udeb/", ""],
344 ["audiomixingfiles.ini", "ngi_sa_audiomixing","/EPOC32/winscw/c/TestFramework/", "/general/", ""],
345 ["sa_camera_supported.ini", "ngi_sa_camera","/EPOC32/armv5/c/TestFramework/", "/general/", ""],
346 ["sa_clip.ini", "ngi_sa_clip","/EPOC32/winscw/c/TestFramework/", "/general/", ""],
347 ["devicecapabilitiesdata.ini", "ngi_sa_devicecapabilities","/EPOC32/winscw/c/TestFramework/", "/general/", ""],
348 ["highlevelaudiofiles.ini", "ngi_sa_highlevelaudio","/EPOC32/winscw/c/TestFramework/", "/general/", ""],
349 ["lowlevelaudiofiles.ini", "ngi_sa_lowlevelaudio","/EPOC32/winscw/c/TestFramework/", "/general/", ""],
350 ["runtimedata.ini", "ngi_sa_runtimetester","/EPOC32/winscw/c/TestFramework/", "/general/", ""],
351 ["sa_stream.ini", "ngi_sa_stream","/EPOC32/winscw/c/TestFramework/", "/general/", ""],
352 #["*", "ngi_sa_videoplayback","/../graphics/video/internal/sa_videoplayback/data/", "/general/", ""],
353 ["test.*", "ngi_sa_images","/Epoc32/winscw/c/Data/", "/general/", ""]
359 my $validexpansions = "all stdlibs combined";
360 my $validLibraries = "ltp opts lsb glib-2.20.4 ssl ngi pcts stdcpp gcce libc-locale play_new";
361 if(rindex($validexpansions, $suite)== -1 && rindex($validLibraries, $suite) == -1)
363 die("$suite is not a valid library. Valid options are $validexpansions $validLibraries");
370 @liblist = split " ", $validLibraries;
371 @liblist = (@liblist, @stdliblist);
374 elsif($suite eq "ltp")
376 @liblist = ("ltp", "opts");
378 elsif($suite eq "stdlibs")
380 @liblist = @stdliblist;
382 elsif($suite eq "ssl")
384 @liblist = ("libcrypto", "libssl");
388 @liblist = ("$suite");
391 # foreach my $l(@liblist)
393 # print "$l was there\n";
397 if($combinedSession eq "yes")
399 GenerateSessionFile("combined", $target,"combined");
403 if($session eq "yes")
405 my $file = $templateRoot."/testsession.xml";
406 opendir(DIRHANDLE, $ATSRoot) || die("Please try to create Session files only after ATSINPUT/components has been created!");
409 if($suite eq "ngi" || $suite eq "play_new")
411 @generatedModules = GenGenModules($suite);
412 my @componentFiles = GetXmls($suite);
413 GenerateSessionFile("combined",$target,$suite,\@componentFiles);
416 elsif($suite eq "ssl")
418 my @componentFiles = GetSslXmls();
419 GenerateSessionFile("combined",$target,$suite,\@componentFiles);
422 elsif($suite eq "stdlibs")
424 #my $dst = $ATSRoot."/$suite"."_testsession.xml";
426 GenerateSessionFile("combined",$target,$suite);
429 foreach my $lib(@liblist)
431 @generatedModules = GenGenModules($lib);
432 if(scalar @generatedModules != 0)
434 #print "Generating for $lib\n";
435 GenerateSessionFile($lib, $target,$lib);
439 #@generatedModules = GetAllModules();
440 #if(scalar @generatedModules != 0)
442 # GenerateSessionFile("combined",$target, "combined");
445 }#session generation code
448 if ($suite eq "ltp" || $suite eq "all")
450 my @ltpModules = GetLtpModules();
451 @generatedModules = @ltpModules;
452 DoGen("ltp", ".dll");
456 my @saved = @dllList;
457 @dllList = ("ltplib.dll");
458 CopySharedDlls("ltp", \@dllList);
459 TransformXmls("ltp","shared");
462 @generatedModules = GetCompiledModules($optsGroupPath."/bld.inf");
463 DoGen("opts",".dll");
466 if ($suite eq "glib-2.20.4")
468 my $bldfile = $templateRoot."/group/bld.inf";
469 my $fileName = $templateRoot;
470 #chopn("$fileName", 5);
477 $bldfile = $fileName."/build/symbian/tests/group/bld.inf";
478 print "bldfile: $bldfile\n";
479 my @glibModules = GetCompiledModules($bldfile);
481 print "glibModules: @glibModules\n";
482 @generatedModules = @glibModules;
484 $bldfile = $fileName."/build/symbian/tests/gobject/group/bld.inf";
485 print "bldfile: $bldfile\n";
486 my @glibModules = GetCompiledModules($bldfile);
488 print "glibModules: @glibModules\n";
490 foreach my $name(@glibModules){
491 @glibModules[$i] =~ s/ //;
494 push(@generatedModules, @glibModules);
496 $bldfile = $fileName."/build/symbian/tests/refcount/group/bld.inf";
497 print "bldfile: $bldfile\n";
498 my @glibModules = GetCompiledModules($bldfile);
500 print "glibModules: @glibModules\n";
502 foreach my $name(@glibModules){
503 @glibModules[$i] =~ s/ //;
506 push(@generatedModules, @glibModules);
508 $bldfile = $fileName."/build/symbian/glib/tests/group/bld.inf";
509 print "bldfile: $bldfile\n";
510 my @glibModules = GetCompiledModules($bldfile);
512 print "glibModules: @glibModules\n";
514 foreach my $name(@glibModules){
515 @glibModules[$i] =~ s/ //;
518 push(@generatedModules, @glibModules);
520 $bldfile = $fileName."/build/symbian/gobject/tests/group/bld.inf";
521 print "bldfile: $bldfile\n";
522 my @glibModules = GetCompiledModules($bldfile);
524 print "glibModules: @glibModules\n";
526 foreach my $name(@glibModules){
527 @glibModules[$i] =~ s/ //;
531 push(@generatedModules, @glibModules);
533 DoGen("glib-2.20.4",".exe");
534 my $gDataRef = \@gliblist;
535 CopyArbitDatFiles("glib-2.20.4",$gDataRef);
537 if($install eq "yes")
539 my @saved = @dllList;
540 my @glib2dllList = ("glibbackend.dll", "Libgobject.dll", "libgmodule.dll", "libgthread.dll",
543 my @glib1List = ( "libgobject.dll", "libgmodule.dll", "libgthread.dll", "libglib.dll", );
544 @dllList = @glib2dllList;
545 CopySharedDlls("glib-2.20.4",\@dllList);
546 TransformXmls("glib-2.20.4", "shared");
555 my $stripStatus = $dontStrip;
558 if($install eq "yes")
560 @dllList = (@dllList, "libcrypto.dll", "libssl.dll");
562 $dontStrip = $stripStatus;
570 CopyArbitDatFiles("",\@ngilist);
574 if($suite eq "play_new")
576 my @play_newModules = ("fonttestmodule", "messagingtestmodule","locationtestmodule", "alertstestmodule",
577 "libxmlstiff","ngisvgtestmodule");
578 @generatedModules = @play_newModules;
579 DoGen("play_new",".dll");
582 ["*.cfg", "fonttestmodule", "/../fonts/internal/testmodules/fonttestmodule/group/","/General/", ""],
583 ["*.xml", "fonttestmodule", "/../fonts/internal/testmodules/fonttestmodule/group/","/", ""],
585 ["*.cfg", "messagingtestmodule", "/../ngimessaging/internal/testmodules/messagingtestmodule/group/","/General/", ""],
586 ["*.xml", "messagingtestmodule", "/../ngimessaging/internal/testmodules/messagingtestmodule/group/","/", ""],
587 ["*", "messagingtestmodule", "/EPOC32/winscw/c/messagingtestmodule/","/General/", ""],
589 ["*.cfg", "locationtestmodule", "/../ngilocation/internal/testmodules/locationtestmodule/group/","/General/", ""],
590 ["*.xml", "locationtestmodule", "/../ngilocation/internal/testmodules/locationtestmodule/group/","/", ""],
592 ["*.cfg", "alertstestmodule", "/../ngialerts/internal/testmodules/alertstestmodule/group/","/General/", ""],
593 ["*.xml", "alertstestmodule", "/../ngialerts/internal/testmodules/alertstestmodule/group/","/", ""],
594 ["vertigo.wav", "alertstestmodule", "/Epoc32/winscw/c/alertstestmodule/","/General/", ""],
596 ["*.cfg", "libxmlstiff", "/../libxmlpp/internal/group/","/General/", ""],
597 ["*.xml", "libxmlstiff", "/../libxmlpp/internal/group/","/", ""],
598 ["*.*", "libxmlstiff", "/../libxmlpp/internal/data/","/General/", ""],
600 ["*.cfg", "ngisvgtestmodule", "/../ngisvg/internal/testmodules/ngisvgtestmodule/group/","/General/", ""],
601 ["*.xml", "ngisvgtestmodule", "/../ngisvg/internal/testmodules/ngisvgtestmodule/group/","/", ""],
602 ["*.*", "ngisvgtestmodule", "/epoc32/winscw/c/ngisvgtest/","/General/", ""],
606 my $bDataRef = \@list;
607 CopyArbitDatFiles("play_new",$bDataRef);
608 if($install eq "yes")
610 @generatedModules = GenGenModules("play_new");
611 my @saved = @dllList;
620 "FeedsLibXml2xmlpp.dll");
621 @dllList = @playList;
622 CopySharedDlls("play_new",\@dllList);
623 TransformXmls("play_new", "shared");
631 if($suite eq "stdcpp")
633 @generatedModules = GetstdcppModules();
634 DoGen("stdcpp",".dll");
635 CopyLtpCfg("stdcpp");
636 @generatedModules = GetstdexeModules();
637 DoGen("stdcpp",".exe");
639 my @saved = @dllList;
640 @dllList = ("stdcxxtestengine.dll");
641 CopySharedDlls("stdcpp", \@dllList);
642 TransformXmls("stdcpp","shared");
645 CopyArbitDatFiles("stdcpp",\@stdcpplist);
647 if($install eq "yes")
649 @generatedModules = GenGenModules("stdcpp");
650 my @saved = @dllList;
651 my @cppList = ("libstdcpp.dll");
653 CopySharedDlls("stdcpp",\@dllList);
654 TransformXmls("stdcpp", "shared");
660 if($suite eq "lsb" || $suite eq "all")
662 my @lsbModules = GetLsbModules();
663 @generatedModules = @lsbModules;
669 #copying the common dlls
677 foreach $dll (@depDlls)
679 CopyDeps("lsb",$dll);
681 #now copy the cfg files
683 #now copy the extra dependency dlls
686 @generatedModules = ("dlopen");
693 "dynlibtest.11.1.dll",
694 "dynlibtest.11.2.dll",
695 "dynlibtest.12g.dll",
696 "dynlibtest.12r.dll",
697 "dynlibtest.14.1.dll",
698 "dynlibtest.14.2.dll",
699 "dynlibtest.14.3.dll",
700 "dynlibtest.3.1.dll",
701 "dynlibtest.3.2.dll",
710 foreach $dll (@depDlls)
712 CopyDeps("lsb",$dll);
716 @generatedModules = ("dlclose");
717 @depDlls = ("dynlibclose.1.dll");
718 foreach $dll (@depDlls)
720 CopyDeps("lsb",$dll);
724 @generatedModules = ("dlerror");
725 @depDlls = ("dynlib.dll");
726 foreach $dll (@depDlls)
728 CopyDeps("lsb",$dll);
732 my $srcDir = $templateRoot."/ts/lsbsuites/group/";
736 foreach my $dllib("dlopen", "dlclose", "dlerror")
738 $dst = $ATSRoot."\\components\\lsb_".$dllib."\\";
739 copy($srcDir."/lsb_".$dllib."_module_blr_hw_component.xml", $dst) || die("DIED: unable to copy from $srcDir!\n");
740 copy($srcDir."/lsb_".$dllib."_module_blr_winsspd_component.xml", $dst) || die("DIED: unable to copy from $srcDir!\n");
749 mkdir $ATSRoot."\\components" || die ("DIED: unable to create component dir");
751 @generatedModules = ("gcce-validate", "gcce-load");
759 my $libname = "gcce";
764 foreach my $module(@generatedModules)
766 my $relroot = $ATSRoot."\\components\\$libname"."_$module";
767 mkdir $relroot || die("DIED: unable to create dir $module\n");
768 mkdir $relroot."\\armv5_urel" || die("DIED: unable to create dir $relroot\\armv5_urel\n");
770 #GenExeXmls($module,$libname);
772 $src = $rootDrive."\\epoc32\\release\\gcce\\urel\\".$module.$suffix;
773 $dst = $ATSRoot."\\components\\".$libname."_".StripModulePrefix($module);
774 $dst = $dst."\\armv5_urel\\";
775 copy($src, $dst) || warn("unable to copy $src to $dst");
777 $src = $rootDrive."\\epoc32\\release\\gcce\\urel\\"."gcce-lib.dll";
778 $dst = $ATSRoot."\\components\\gcce_gcce-load";
779 $dst = $dst."\\armv5_urel\\";
780 copy($src, $dst) || warn("unable to copy $src to $dst");
784 ["gcce_gcce-load_module_blr_hw_component.xml", "gcce-load", "./","/", ""],
785 ["gcce_gcce-validate_module_blr_hw_component.xml", "gcce-validate", "./","/", ""],
788 my $bDataRef = \@list;
789 CopyArbitDatFiles("gcce",$bDataRef);
796 if($suite eq "libc-locale")
800 mkdir $ATSRoot."\\components" || die ("DIED: unable to create component dir");
802 @generatedModules = ("tstring");
803 DoGen("libc",".dll");
806 ["locales.txt", "string", "../libc/internal/testapps/tstring/data/", "/General/", ""],
807 ["tstring_locale_component.xml", "string", "../libc/internal/testapps/tstring/group/", "/", ""],
811 my $bDataRef = \@localelist;
812 CopyArbitDatFiles("libc",$bDataRef);
813 #delete($ATSRoot."/components/libc_string/"."libc_string_module_blr_hw_component.xml") || die("unable to delete");
814 my $my_src = $ATSRoot."/components/libc_string/"."tstring_locale_component.xml";
815 my $my_dst = $ATSRoot."/components/libc_string/"."libc_string_module_blr_hw_component.xml";
817 unlink($my_dst) ||warn("unable to delete $my_dst");
818 rename($my_src,$my_dst) || move($my_src,$my_dst) || die("Unable to rename!");
825 my $bldfile = $templateRoot."/group/bld.inf";
826 my @pctsModules = GetCompiledModules($bldfile);
827 @generatedModules = @pctsModules;
828 DoGen("pcts",".exe");
834 #copying the common dlls
846 if($install eq "yes")
848 my @saved = @dllList;
850 CopySharedDlls("pcts", \@depDlls);
851 TransformXmls("pcts","shared");
854 #now copy the cfg files
856 my $srcDir = "/epoc32/winscw/c/data/tet/";
857 my $file1 = $srcDir."tet_code";
858 my $file2 = $srcDir."tetexec.cfg";
859 foreach my $module(@generatedModules)
861 $dst = $ATSRoot."\\components\\pcts_".$module;
862 $dst = $dst."\\General\\";
863 copy($file1, $dst) or die "copy: $! $file1 $dst";
864 copy($file2,$dst) or die "copy: $! $file2 $dst";
872 foreach my $module(@generatedModules)
874 my $file3 = "/epoc32/winscw/c/logs/tet/m.".$module;
876 $dst = $ATSRoot."\\components\\pcts_".$module;
877 $dst = $dst."\\General\\";
878 copy($file3, $dst) or die "copy: $! $file3 $dst";
886 if($suite eq "stdlibs" || $suite eq "all")
888 @generatedModules = ("tzlib");
889 DoGen("libz", ".dll");
891 @generatedModules = ("tlibcrypt");
892 DoGen("libcrypt",".dll");
894 @generatedModules = @libcModules;
895 DoGen("libc",".dll");
898 @generatedModules = ("twchar");
899 CopyDeps("libc","twchar_helloworld.exe");
901 @generatedModules = ("twopen");
902 CopyDeps("libc","twpopenwritechild.exe");
903 CopyDeps("libc","twpopenreadchild.exe");
906 @generatedModules = @libdlModules;
907 DoGen("libdl",".dll");
908 CopyDeps("libdl","Dll1.dll");
909 CopyDeps("libdl","Dll2.dll");
910 CopyDeps("libdl","DependencyTestDll.dll");
912 @generatedModules = @libmModules;
913 DoGen("libm",".dll");
915 $TDIR = "\\internal\\";
916 @generatedModules = @pthreadModules;
917 DoGen("libpthread",".dll");
918 CopyDeps("libpthread","testharness.dll");
923 if($install eq "yes")
925 foreach my $lib(@liblist)
927 #print "Transforming lib $lib\n";
928 @generatedModules = GenGenModules($lib);
929 my @oldList = @dllList;
932 @dllList = (@dllList, "wsdsoln.dll", "libestw32.dll");
933 CopySharedDlls($lib,\@dllList,"winscw");
934 TransformXmls($lib, "shared","winscw");
939 CopySharedDlls($lib,\@dllList,"armv5");
940 TransformXmls($lib, "shared","armv5");
947 #function to generate ModuleList for a compiled bld.inf
948 sub GetCompiledModules($)
955 open (INFILE, "<".$file ) || die ("DIED: Can not find $file!");
959 if(/(.*)\.mmp/ && $1 !~ /^\/\//)
961 if($_ !~ /\/\/Not for ATS/)
963 push @moduleList, $1;
974 my $prevDir = getcwd();
975 my @rootList = ("kernel", "misc");
977 foreach my $node(@rootList)
979 chdir $ltpPath."/$node";
981 find(\&MakeGroupList, ".");
982 @totalgroupList = (@totalgroupList, @groupList);
985 return @totalgroupList;
988 sub GetstdexeModules()
990 my $prevDir = getcwd();
992 foreach my $group(@stdexeList)
994 my $groupPath = $templateRoot."/testapps/".$group. "/";
997 find(\&grovelAllMmpFiles, ".");
999 @fullList = (@fullList,@groupList);
1004 sub grovelAllMmpFiles()
1006 if($_ =~ /(.*)\.mmp/ && ! ($_ =~ /manual/))
1008 push @groupList, $1;#get name of module
1012 sub GetstdcppModules()
1014 my $prevDir = getcwd();
1015 my @rootList = ("auto");
1017 foreach my $node(@rootList)
1019 chdir $stdcppPath."/$node";
1021 find(\&MakeGroupList, ".");
1022 @totalgroupList = (@totalgroupList, @groupList);
1025 return @totalgroupList;
1028 sub GetTstdcppModules()
1030 my $prevDir = getcwd();
1031 #chdir $tstdcppPath;
1033 find(\&grovelAllMmpFiles, ".");
1040 my $currentDir = $File::Find::dir;
1042 #print "Current dir:$currentDir\n";
1043 if( $currentDir =~ /.*\/(.*)\/group/)
1045 if($cfglocation{$1} eq "")
1047 $cfglocation{$1} = getcwd()."\/$1.cfg";
1048 push @groupList, $1;#get name of module
1049 }#first time in group
1054 #function that generates the ATS setup
1057 my $libname = shift @_;
1060 mkdir $ATSRoot."\\components" || die ("DIED: unable to create component dir");
1065 foreach my $listed(@generatedModules)
1067 my @filesToProcess =
1069 "LibXXX_ATSTemplateXXX_module_blr_hw_component.xml",
1070 "LibXXX_ATSTemplateXXX_module_blr_winsspd_component.xml",
1071 "testframework.ini",
1073 if(rindex($noXmlsGenList, $libname) != -1 )
1075 @filesToProcess = ("testframework.ini",);
1080 GenExeXmls($listed,$libname);
1084 #just in case no xml file was supplied
1086 my $ref = \@filesToProcess;
1087 GenXmls($libname, $listed,$ref);
1091 CopyDlls($libname,$ext);
1092 #copy the provided cfg, ini and xmls
1093 if($libname eq "opts")
1095 CopyOptsCfg($libname);
1097 elsif($libname eq "ltp" || $libname eq "lsb" || $libname eq "glib-2.20.4")
1099 #copy latter and dont copy respectively for ltp and lsb
1103 CopyCfgIniXmls($libname);
1107 sub CopyCfgIniXmls()
1109 my $libname = pop @_;
1111 my $libRoot = $templateRoot;
1112 $libRoot =~ /(.*)internal.*/;
1120 foreach my $listed(@generatedModules)
1122 my $dirname = $listed;
1123 $dirname =~ s/test/t/;
1124 $module = StripModulePrefix($listed);
1126 $src = $libRoot.$libname.$TDIR.$dirname."\\group\\";
1128 my $xmlCopied = "0";
1129 my @globpattern = ("*.ini", "*.xml","*.cfg");
1130 foreach my $pat(@globpattern)
1132 $dst = $ATSRoot."\\components\\".$libname."_".$module;
1135 $dst = $dst."\\General\\";
1141 my @filesFound = glob($src."\\$pat");
1142 if(scalar @filesFound eq "0")
1144 #print "No files found for module $module $pat!\n";
1149 if($pat eq "*.cfg" && $xmlCopied eq "0")#rename only if xml not copied
1151 if(scalar @filesFound > 1)
1153 print "Multiple cfg files found. Copying all!\n";
1157 $dst = $dst.$listed.".cfg";
1160 elsif($pat eq "*.xml")
1163 foreach my $from (@filesFound)
1165 if($from =~ /winscw_component/)
1167 $dst = $folder.$libname."_".$module."_module_blr_winscw_component.xml";
1168 copy($from, $dst) or die "DIED: copy: $! $from $dst";
1171 elsif($from =~ /winsspd_component/)
1173 $dst = $folder.$libname."_".$module."_module_blr_winsspd_component.xml";
1174 copy($from, $dst) or die "DIED: copy: $! $from $dst";
1177 elsif($from =~ /hw_component/)
1179 $dst = $folder.$libname."_".$module."_module_blr_hw_component.xml";
1180 copy($from, $dst) or die "DIED: copy: $! $from $dst";
1183 }#examine individually
1184 if(scalar @filesFound > 2)
1186 #print "Multiple xml files found!!!\n";
1192 foreach my $from (@filesFound)
1194 copy($from, $dst) or die "DIED: copy: $! $from $dst";
1200 #copy the cfg files for the opts test suite
1203 my $libname = pop @_;
1205 my $libRoot = $optsGroupPath."\\";
1210 foreach $module(@generatedModules)
1212 $src = $libRoot.$module."\.cfg";
1213 $dst = $ATSRoot."\\components\\".$libname."_".$module;
1214 $dst = $dst."\\General\\";
1215 copy($src, $dst) or warn "copy: $! $src $dst";
1219 #copy the lsb cfg files
1222 my $libname = pop @_;
1228 my $srcDir = $templateRoot."/ts/lsbsuites/lsblib/data/";
1230 foreach $module(@generatedModules)
1232 my $file1 = $srcDir."tet_code.cfg";
1233 my $file2 = $srcDir."tetexec.cfg";
1234 $dst = $ATSRoot."\\components\\".$libname."_".$module;
1235 $dst = $dst."\\General\\";
1236 copy($file1, $dst) or die "copy: $! $file1 $dst";
1237 copy($file2, $dst) or die "copy: $! $file2 $dst";
1242 #copy the ltp cfg files
1245 my $libname = pop @_;
1251 foreach $module(@generatedModules)
1253 $src = $cfglocation{$module};
1254 $dst = $ATSRoot."\\components\\".$libname."_".$module;
1255 $dst = $dst."\\General\\";
1256 copy($src, $dst) or warn "copy: $! $src $dst";
1263 my $libname = shift @_;
1264 my $suffix = shift @_;
1271 foreach $module(@generatedModules)
1275 $src = $rootDrive."\\epoc32\\release\\winscw\\udeb\\".$module.$suffix;
1276 $dst = $ATSRoot."\\components\\".$libname."_".StripModulePrefix($module);
1277 $dst = $dst."\\winscw_udeb\\";
1278 copy($src, $dst) || warn("unable to copy $src to $dst");
1282 $src = $rootDrive."\\epoc32\\release\\armv5\\urel\\".$module.$suffix;
1283 $dst = $ATSRoot."\\components\\".$libname."_".StripModulePrefix($module);
1284 $dst = $dst."\\armv5_urel\\";
1285 copy($src, $dst) || warn("unable to copy $src to $dst");
1289 #fn to generate the session file
1290 sub GenerateSessionFile($$$$)
1292 my $libname = shift @_;
1293 my $target = shift @_;
1294 my $name = shift @_;
1295 my $listptr = shift @_;
1296 my $outdir = $ATSRoot;
1297 my $infile = $templateRoot."\\testsession.xml";
1298 chdir $outdir || die("DIED: Unable to chdir!");
1299 #open INFILE, $infile || die ("DIED: Can not open input file $infile");
1300 my $prefix = $name."_".$target;
1301 if($sdkversion ne "")
1303 $prefix = $prefix."_".$sdkversion;
1306 open OUTFILE, ">".$outdir."\\".$prefix."_testsession.xml" || die ("DIED: Can not open output file");
1308 my $snippet = $target;
1309 if($target ne "winscw" && $target ne "winsspd")
1314 print OUTFILE "<?xml version=\"1.0\"?>\n";
1315 print OUTFILE "<testsession>\n";
1316 #print OUTFILE "<symbian-version>$libname"."_".$snippet."_TestDrop_blr_component</symbian-version>\n";
1317 print OUTFILE "<symbian-version>ats_test_session</symbian-version>\n";
1318 print OUTFILE "<testitem>at</testitem>\n";
1319 print OUTFILE "<resultfile>ATSOUTPUT\\".$prefix."_testsession_results.xml</resultfile>\n";
1320 if($sendEmail eq "yes")
1322 print OUTFILE <<EOEmailNote;
1323 <email_notification>
1324 <include_test_cases>true</include_test_cases>
1325 <message_file>C:\\\\lm.txt </message_file>
1326 <send_after_rerun>false</send_after_rerun>
1327 <subject>ATS testreport</subject>
1328 <from>swbuild\@nokia.com</from>
1329 <to>santosh.ks\@nokia.com</to>
1330 <to>Imtiyaj.Kaji\@nokia.com</to>
1331 <to>tp-ap-india-mrt-testdg\@nokia.com</to>
1332 <to>tp-ap-india-mrt-libsdg\@nokia.com</to>
1333 <to>subeesh.sivanandan\@nokia.com</to>
1334 <to>girish.bhat\@nokia.com</to>
1335 </email_notification>
1339 if($libname ne "combined")
1341 AddAssumedIncludes($libname,$snippet);
1347 AddFileList($libname,$listptr);
1351 AddActualIncludes($libname);
1355 print OUTFILE "</testsession>\n";
1362 sub AddAssumedIncludes($$)
1364 my $libname = shift @_;
1365 my $snippet = shift @_;
1368 foreach my $listed(@generatedModules)
1370 $APITest = StripModulePrefix($listed);
1372 print OUTFILE " <!--Inclusion of $target xml for $APITest -->\n";
1373 print OUTFILE " <component>\n";
1374 print OUTFILE " <factory>Symbian</factory>\n";
1375 if($libname eq "all")
1377 print OUTFILE " <testplan>ATSINPUT\\components\\$listed\\$listed"."_module_blr_".$snippet."_component.xml</testplan>\n";
1381 print OUTFILE " <testplan>ATSINPUT\\components\\$libname"."_"."$APITest\\$libname"."_$APITest"."_module_blr_".$snippet."_component.xml</testplan>\n";
1383 if($target eq "winscw")
1385 print OUTFILE " <target hardware=\"winscw\" build=\"udeb\" />\n";
1387 elsif($target eq "winsspd")
1389 print OUTFILE " <target hardware=\"winsspd\" platform=\"winscw\" build=\"udeb\" />\n";
1393 print OUTFILE " <target hardware=\"$target\" build=\"urel\" />\n";
1395 print OUTFILE " </component>\n";
1397 }#foreach @generatedModules
1403 my $libname = shift @_;
1404 my $listptr = shift @_;
1405 my @componentfiles = @$listptr;
1407 foreach my $listed(@componentfiles)
1410 print OUTFILE " <!--Inclusion of $target xml -->\n";
1411 print OUTFILE " <component>\n";
1412 print OUTFILE " <factory>Symbian</factory>\n";
1413 print OUTFILE " <testplan>ATSINPUT\\components\\$listed</testplan>\n";
1414 if($target eq "winscw")
1416 print OUTFILE " <target hardware=\"winscw\" build=\"udeb\" />\n";
1418 elsif($target eq "winsspd")
1420 print OUTFILE " <target hardware=\"winsspd\" platform=\"winscw\" build=\"udeb\" />\n";
1424 print OUTFILE " <target hardware=\"$target\" build=\"urel\" />\n";
1426 print OUTFILE " </component>\n";
1428 }#foreach @componentfiles
1440 "libssl_ssltest\\libssl_blr_winsspd_component.xml",
1441 "libcrypto_crypto_test\\libcrypto_blr_winsspd_component.xml",
1442 "libcrypto_openssl\\libcrypto_topenssltestss_blr_winsspd_component.xml",
1443 "libcrypto_openssl\\libcrypto_topenssltestverify_blr_winsspd_component.xml",
1444 "libcrypto_openssl\\libcrypto_topenssltestenc_blr_winsspd_component.xml",
1445 "libcrypto_openssl\\libcrypto_topenssltestgen_blr_winsspd_component.xml",
1446 "libcrypto_openssl\\libcrypto_topenssltpkcs7_blr_winsspd_component.xml",
1447 "libcrypto_openssl\\libcrypto_topenssltpkcs7d_blr_winsspd_component.xml",
1448 "libcrypto_openssl\\libcrypto_topenssltreq_blr_winsspd_component.xml",
1449 "libcrypto_openssl\\libcrypto_topenssltreq2_blr_winsspd_component.xml",
1450 "libcrypto_openssl\\libcrypto_topenssltrsa_blr_winsspd_component.xml",
1451 "libcrypto_openssl\\libcrypto_topenssltcrl_blr_winsspd_component.xml",
1452 "libcrypto_openssl\\libcrypto_topenssltsid_blr_winsspd_component.xml",
1453 "libcrypto_openssl\\libcrypto_topenssltx509_blr_winsspd_component.xml",
1454 "libcrypto_openssl\\libcrypto_topenssltx5091_blr_winsspd_component.xml",
1455 "libcrypto_openssl\\libcrypto_topenssltx5092_blr_winsspd_component.xml",
1460 "libcrypto_openssl\\libcrypto_topenssltestss_blr_hw_component.xml",
1461 "libcrypto_openssl\\libcrypto_topenssltestverify_blr_hw_component.xml",
1462 "libcrypto_openssl\\libcrypto_topenssltestenc_blr_hw_component.xml",
1463 "libcrypto_openssl\\libcrypto_topenssltestgen_blr_hw_component.xml",
1464 "libcrypto_openssl\\libcrypto_topenssltpkcs7_blr_hw_component.xml",
1465 "libcrypto_openssl\\libcrypto_topenssltpkcs7d_blr_hw_component.xml",
1466 "libcrypto_openssl\\libcrypto_topenssltreq_blr_hw_component.xml",
1467 "libcrypto_openssl\\libcrypto_topenssltreq2_blr_hw_component.xml",
1468 "libcrypto_openssl\\libcrypto_topenssltrsa_blr_hw_component.xml",
1469 "libcrypto_openssl\\libcrypto_topenssltcrl_blr_hw_component.xml",
1470 "libcrypto_openssl\\libcrypto_topenssltsid_blr_hw_component.xml",
1471 "libcrypto_openssl\\libcrypto_topenssltx509_blr_hw_component.xml",
1472 "libcrypto_openssl\\libcrypto_topenssltx5091_blr_hw_component.xml",
1473 "libcrypto_openssl\\libcrypto_topenssltx5092_blr_hw_component.xml",
1474 "libssl_ssltest\\libssl_blr_hw_component.xml",
1475 "libcrypto_crypto_test\\libcrypto_blr_hw_component.xml",
1477 if($target eq "winsspd" || $target eq "winscw")
1479 @componentfiles = @emulatorfiles;
1483 @componentfiles = @hwfiles;
1485 return @componentfiles;
1490 sub AddActualIncludes($)
1492 my $libname = shift @_;
1493 find(\&XmlComponentFiles, ".");
1496 while(($key, $value) = each(%DirHash))
1498 $value =~ s/\//\\/g;
1500 print OUTFILE " <!--Inclusion of dynamically found $target xml -->\n";
1501 print OUTFILE " <component>\n";
1502 print OUTFILE " <factory>Symbian</factory>\n";
1503 print OUTFILE " <testplan>$value</testplan>\n";
1504 if($target eq "winscw")
1506 print OUTFILE " <target hardware=\"winscw\" build=\"udeb\" />\n";
1508 elsif($target eq "winsspd")
1510 print OUTFILE " <target hardware=\"winsspd\" platform=\"winscw\" build=\"udeb\" />\n";
1514 print OUTFILE " <target hardware=\"$target\" build=\"urel\" />\n";
1516 print OUTFILE " </component>\n";
1522 sub XmlComponentFiles()
1524 if($_ !~ /\.xml/ || $_ =~ /manual/)
1528 #print "Processing $_\n";
1530 if($dir =~ /.*(ATSINPUT.*)/)
1533 if($dir !~ /.*components.*/)
1537 #print "The dir is $dir\n";
1544 if($target eq "winsspd" )
1548 #print "Adding $target file $_ for $dir\n";
1549 $DirHash{$dir} = $dir."/".$_;
1552 elsif($target eq "winscw")
1556 #print "Adding $target file $_ for $dir\n";
1557 $DirHash{$dir} = $dir."/".$_;
1560 elsif($_ =~ /$target/)
1562 #print "$_ matched $target \n";
1563 #print "Adding $target file $_ for $dir\n";
1564 $DirHash{$dir} = $dir."/".$_;
1568 #print "$_ matched hw";
1569 if(scalar $DirHash{$dir} == 0)
1571 #print "Adding hw file $_ for $dir\n";
1572 $DirHash{$dir} = $dir."/".$_;
1573 #print " and added\n"
1577 #print " and not added\n";
1586 @generatedModules = ();
1591 my $libname = shift @_;
1593 foreach my $module(@generatedModules)
1595 $dirname = StripModulePrefix($module);
1596 my $relroot = $ATSRoot."\\components\\$libname"."_$dirname";
1597 mkdir $relroot || die("DIED: unable to create dir $dirname\n");
1598 mkdir $relroot."\\General" || die("DIED: unable to create dir $relroot\\General\n");
1601 mkdir $relroot."\\armv5_urel" || die("DIED: unable to create dir $relroot\\armv5_urel\n");
1605 mkdir $relroot."\\winscw_udeb" || die("DIED: unable to create dir $relroot\\winscw_udeb\n");
1612 my $libname = shift @_;
1613 my $listedName = shift @_;
1614 my $bref = shift @_;
1615 my @filesToProcess = @$bref;
1617 #strip leading test and t names from module
1618 my $moduleName = StripModulePrefix($listedName);
1620 my $toPath = $ATSRoot."\\components\\$libname"."_$moduleName\\";
1625 foreach $src(@filesToProcess)
1628 $dst =~ s/ATSTemplateXXX/$moduleName/;
1629 $dst =~ s/LibXXX/$libname/;
1632 if($src eq "testframework.ini")
1634 $dst = $toPath."General\\".$dst;
1638 $dst = $toPath.$dst;
1640 copy($templateRoot."\\".$src, $dst) || die("DIED: Unable to copy $src to $dst\n");
1641 ExpandModuleMacros($dst, $libname, $listedName);
1648 my $moduleName = shift @_;
1649 my $libname = shift @_;
1651 my $toPath = $ATSRoot."\\components\\$libname"."_$moduleName\\";
1652 my @filesToProcess =
1654 "LibXXX_ATSTemplateXXX_exemodule_blr_hw_component.xml",
1655 "LibXXX_ATSTemplateXXX_exemodule_blr_winsspd_component.xml",
1660 foreach $src(@filesToProcess)
1663 $dst =~ s/ATSTemplateXXX/$moduleName/;
1664 $dst =~ s/LibXXX/$libname/;
1665 $dst =~ s/_exemodule_/_module_/;
1666 $dst = $toPath.$dst;
1667 copy($templateRoot."\\".$src, $dst) || die("DIED: Unable to copy to $dst\n");
1668 ExpandModuleMacros($dst, $libname, $moduleName);
1672 #function to expand the macros existing in a file
1673 #file is replaced by new version
1674 #args are relativePath. filename and $moduleName
1675 sub ExpandModuleMacros()
1678 my $moduleName = pop @_;
1679 my $libname = pop @_;
1680 my $filename = pop @_;
1682 my $MODULENAME = $moduleName;
1683 $MODULENAME =~ tr/[a-z]/[A-Z]/;
1686 open (INFILE, $filename ) || die ("DIED: Can not find $filename");
1689 my $newOutput = $filename."new";
1690 open (OUTFILE, ">".$newOutput ) || die ("DIED: Can not open $newOutput");
1692 # Replace text in files
1695 s/ATSTemplateXXX/$moduleName/g;
1696 s/LibXXX/$libname/g;
1704 # Rename result file
1706 rename $newOutput,$filename;
1713 my $libname = shift @_;
1714 my $copyDll = shift @_;
1717 foreach my $listed(@generatedModules)
1719 my $module = StripModulePrefix($listed);
1722 $src = $rootDrive."\\epoc32\\release\\winscw\\udeb\\".$copyDll;
1723 $dst = $ATSRoot."\\components\\$libname"."_$module";
1724 $dst = $dst."\\winscw_udeb\\";
1725 copy($src, $dst) || warn("unable to copy $src to $dst");
1729 $src = $rootDrive."\\epoc32\\release\\armv5\\urel\\".$copyDll;
1730 $dst = $ATSRoot."\\components\\$libname"."_$module";
1731 $dst = $dst."\\armv5_urel\\";
1732 copy($src, $dst) || warn("unable to copy $src to $dst");
1740 my $libRoot = $templateRoot;
1741 $libRoot =~ /(.*)internal.*/;
1745 ["libcrypt", "tlibcrypt", "group/Test_Data.dat"],
1746 ["libc", "tnetdb", "data/services.txt"],
1747 ["libc", "tstring", "data/locales.txt"],
1748 ["libc", "libc_loc_blr", "data/locales.txt"],
1749 ["libz", "tzlib", "data/*.*"],
1750 ["libc", "tlink", "data/*.*"],
1751 ["libc", "tmmap", "data/*.*"],
1757 foreach my $ref(@list)
1760 ($libname, $dirname, $glob) = @inarr;
1761 my $modulename = StripModulePrefix($dirname);
1762 my $src = "$libRoot/$libname/internal/testapps/$dirname/$glob";
1763 my $dst = $ATSRoot."\\components\\$libname"."_"."$modulename\\General\\";
1764 if($dirname eq "libc_loc_blr")
1766 $src = "$libRoot/libc/src/locales.txt";
1768 my @filesFound = glob($src);
1769 if(scalar @filesFound == 0)
1771 die("DIED: no Dat file found to copy!");
1773 foreach my $file(@filesFound)
1775 copy($file, $dst) || die("DIED: unable to copy $file to $dst");
1781 #glib-2.20.4 dat file copy
1782 sub CopyArbitDatFiles($$)
1785 my $libname = shift @_;
1786 my $refArr = shift @_;
1787 my @list = @$refArr;
1796 #now copy the files appropriately
1797 foreach my $ref(@list)
1800 ($fname, $modulename, $location, $atsDst, $targetDst) = @inarr;
1801 #print "[$fname, $modulename, $location, $atsDst, $targetDst]\n";
1802 if($location =~ /(.*)\.\.(.*)/)
1804 $location = GetPathPrefix().$2;
1808 $location = $rootDrive.$location;
1810 my $src = $location.$fname;
1811 my $dst = $ATSRoot."\\components\\$libname"."_".$modulename.$atsDst;
1814 $dst = $ATSRoot."\\components\\".$modulename.$atsDst;
1815 #print "$dst CHANGED!\n"
1818 my @filesFound = glob($src);
1819 if(scalar @filesFound == 0)
1821 die("DIED: no Dat file $src found to copy!");
1823 foreach my $file(@filesFound)
1825 copy($file, $dst) || warn("DIED: unable to copy $file to $dst");
1828 if($targetDst ne "")
1830 my @filesToChange = ();
1831 if($atsDst =~ "armv5")
1833 #armv5 component file
1834 unshift @filesToChange, $libname."_".$modulename."_module_blr_hw_component.xml";
1837 elsif($atsDst =~ "winscw")
1839 #winscw component file
1840 unshift @filesToChange, $libname."_".$modulename."_module_blr_winsspd_component.xml";
1844 #add entry to both xmls
1845 unshift @filesToChange, $libname."_".$modulename."_module_blr_hw_component.xml";
1846 unshift @filesToChange, $libname."_".$modulename."_module_blr_winsspd_component.xml";
1848 foreach my $file(@filesToChange)
1850 $src = $ATSRoot."/components/".$libname."_"."$modulename/".$file;
1851 ModifyXml($src,$libname,$fname,$atsDst,$targetDst);
1860 sub ModifyXml($$$$$)
1862 my $filename = shift @_;
1864 my $fname = shift @_;
1865 my $atsDst = shift @_;
1866 my $targetDst = shift @_;
1869 #printf("Modifying $filename with lib= $lib fname= $fname atsDst = $atsDst targetDst = $targetDst\n");
1872 open (INFILE, $filename ) || die ("Can not find $filename");
1875 my $newOutput = $filename."new";
1876 open (OUTFILE, ">".$newOutput ) || die ("Can not open $newOutput");
1879 # Replace text in files
1882 if(/\<stif\>/ || /\<execute\>/)
1886 print OUTFILE "\<stif\>\n";
1890 print OUTFILE "\<execute\>\n";
1893 if($atsDst !~ "General")
1897 print OUTFILE <<EObinary;
1899 <install type=\"$type\">
1901 <dst>$targetDst\\$fname</dst>
1904 }#stif or execute tag found
1914 # Rename result file
1916 rename $newOutput,$filename;
1919 sub GenGenModules($)
1921 my $libname = shift @_;
1924 my $src = $ATSRoot."/components/";
1926 opendir(DIRHANDLE, "$src") || die "Cannot opendir $src";
1927 foreach my $name (readdir(DIRHANDLE))
1929 if($name =~ /^$libname/)
1931 if($libname ne "libc" || $name !~ /^libcrypt/)
1933 $name =~ s/^$libname//;
1935 unshift @fileList, $name;
1936 }#excluded libcrypt from libc list
1939 closedir(DIRHANDLE);
1947 my $src = $ATSRoot."/components/";
1949 opendir(DIRHANDLE, "$src") || die "Cannot opendir $src";
1950 foreach my $name (readdir(DIRHANDLE))
1952 if($name ne "." && $name ne ".." && $name ne "shared")
1954 unshift @fileList, $name;
1958 closedir(DIRHANDLE);
1964 sub TransformXmls($$)
1966 my $libname = shift @_;
1967 my $shared = shift @_;
1968 my $target = shift @_;
1975 if($target eq "armv5")
1979 elsif($target eq "winscw")
1986 $winscw = $do_winscw;
1990 foreach $module(@generatedModules)
1992 if($armv5 == 1 && $winscw == 1)
1994 $src = $ATSRoot."/components/".$libname."_"."$module/*.xml";
1998 $src = $ATSRoot."/components/".$libname."_"."$module/*_hw_component.xml";
2002 $src = $ATSRoot."/components/".$libname."_"."$module/*_winsspd_component.xml";
2004 my @fileList = glob($src);
2005 foreach my $file(@fileList)
2007 #print"$file to be transformed!\n";
2008 AddLibsInXml($libname,$file,$shared);
2013 sub AddLibsInXml($$$)
2015 my $libname = shift @_;
2016 my $filename = shift @_;
2017 my $shared = shift @_;
2020 open (INFILE, $filename ) || die ("Can not find $filename");
2023 my $newOutput = $filename."new";
2024 open (OUTFILE, ">".$newOutput ) || die ("Can not open $newOutput");
2028 # Replace text in files
2031 if(/\<stif\>/ || /\<execute\>/)
2035 print OUTFILE "\<stif\>\n";
2039 print OUTFILE "\<execute\>\n";
2040 if($filename =~ /winsspd/)
2045 foreach my $installable(@dllList)
2047 print OUTFILE <<EOLine;
2049 <install type=\"$shared binary\">
2050 <src>$installable</src>
2051 <dst>$drive\\sys\\bin\\$installable</dst>
2066 # Rename result file
2068 rename $newOutput,$filename;
2071 sub CopySharedDlls()
2073 my $libname = shift @_;
2075 my @ListOfDlls = @$ref;
2076 my $target = shift @_;
2083 if($target eq "armv5")
2087 elsif($target eq "winscw")
2098 mkdir $ATSRoot."\\components\\shared" || die("Wouldn't make shared folder in $ATSRoot\\components");
2101 mkdir $ATSRoot."\\components\\shared\\winscw_udeb" || die("Wouldn't make shared folder in $ATSRoot\\components\winscw_udeb");
2105 mkdir $ATSRoot."\\components\\shared\\armv5_urel" || die("Wouldn't make shared folder in $ATSRoot\\components\armv5_urel");
2108 foreach my $copyDll(@ListOfDlls)
2112 $src = $rootDrive."\\epoc32\\release\\winscw\\udeb\\".$copyDll;
2113 $dst = $ATSRoot."\\components\\shared";
2114 $dst = $dst."\\winscw_udeb\\";
2115 copy($src, $dst) || warn("unable to copy $src to $dst");
2119 $src = $rootDrive."\\epoc32\\release\\armv5\\urel\\".$copyDll;
2120 $dst = $ATSRoot."\\components\\shared";
2121 $dst = $dst."\\armv5_urel\\";
2122 copy($src, $dst) || warn("unable to copy $src to $dst");
2128 sub CopyMultiDlls($)
2130 my $libname = shift @_;
2134 foreach my $listed(@generatedModules)
2136 foreach my $copyDll(@dllList)
2140 $src = $rootDrive."\\epoc32\\release\\winscw\\udeb\\".$copyDll;
2141 $dst = $ATSRoot."\\components\\$libname"."_$listed";
2142 $dst = $dst."\\winscw_udeb\\";
2143 copy($src, $dst) || warn("unable to copy $src to $dst");
2147 $src = $rootDrive."\\epoc32\\release\\armv5\\urel\\".$copyDll;
2148 $dst = $ATSRoot."\\components\\$libname"."_$listed";
2149 $dst = $dst."\\armv5_urel\\";
2150 copy($src, $dst) || warn("unable to copy $src to $dst");
2156 sub StripModulePrefix($)
2158 my $listed = pop @_;
2159 my $module = $listed;
2162 $module =~ s/^test//;
2164 $module =~ s/^libc_//;
2165 $module =~ s/^libm_//;
2331 sub GenBackendTest()
2336 ["libc", "tlibcbackend"],
2340 mkdir $ATSRoot."\\components" || die ("DIED: unable to create component dir");
2345 foreach my $ref(@datList)
2348 ($lib, $module,$ext) = @inarr;
2349 @generatedModules = ($module);
2351 CopyDlls($lib,".dll");
2356 @generatedModules = ("tlibcbackend");
2357 CopyDeps("libc","TPopenReadChild.exe");
2358 CopyDeps("libc","TPopenWriteChild.exe");
2364 my $libname = "libc";
2366 ["*.xml", "libcbackend", "/../backend/internal/tlibcbackend/group/","/", ""],
2367 ["*.cfg", "libcbackend", "/../backend/internal/tlibcbackend/group/","/General/", ""],
2368 ["*.ini", "libcbackend", "/../backend/internal/tlibcbackend/group/","/General/", ""],
2371 my $bDataRef = \@list;
2372 CopyArbitDatFiles("libc",$bDataRef);
2377 my $srcPrefix = $templateRoot;
2378 $srcPrefix =~ /(.*)tsrc.*/;
2387 my $libRoot = $templateRoot;
2388 $libRoot =~ /(.*)internal.*/;
2392 ["libssl", "ssltest", "/tsrc/ssl_test/data/*"],
2393 ["libcrypto", "topenssl", "/tsrc/topenssl/data/*"],
2399 foreach my $ref(@list)
2402 ($libname, $dirname, $glob) = @inarr;
2403 my $modulename = StripModulePrefix($dirname);
2404 my $srcPrefix = GetPathPrefix();
2406 my $src = "$srcPrefix"."$glob";
2408 my $dst = $ATSRoot."\\components\\$libname"."_"."$modulename\\General\\";
2409 my @filesFound = glob($src);
2410 if(scalar @filesFound == 0)
2412 die("DIED: no Dat file found to copy!");
2414 foreach my $file(@filesFound)
2416 copy($file, $dst) || die("DIED: unable to copy $file to $dst");
2422 sub CopyCryptoXmls()
2425 ["*.xml", "libssl_ssltest/", "/tsrc/ssl_test/group/"],
2426 ["*.xml", "libcrypto_crypto_test/", "/tsrc/crypto_test/group/"],
2427 ["*.xml", "libcrypto_openssl/", "/tsrc/topenssl/group/"],
2435 #now copy the files appropriately
2436 foreach my $ref(@list)
2439 ($fname, $moduleDst, $location) = @inarr;
2440 my $src = GetPathPrefix().$location.$fname;
2441 my $dst = $ATSRoot."\\components\\$moduleDst";
2443 my @filesFound = glob($src);
2444 if(scalar @filesFound == 0)
2446 die("DIED: no xml file found to copy!");
2448 foreach my $file(@filesFound)
2450 copy($file, $dst) || die("DIED: unable to copy $file to $dst");
2454 my @crypto_copyList = ("*.txt", "*cfg", "*.ini");
2456 foreach my $item(@crypto_copyList)
2458 $location = "/libcrypto/internal/testapps/crypto_test/group/";
2459 $fname = GetPathPrefix().$location.$item;
2460 my @filesFound = glob($fname);
2461 foreach my $file(@filesFound)
2463 $moduleDst = "libcrypto_crypto_test/";
2464 my $dst = $ATSRoot."\\components\\".$moduleDst."/General/";
2475 ["libssl", "ssltest", ".exe"],
2476 ["libcrypto", "crypto_test",".dll"],
2477 ["libcrypto", "openssl",".exe"],
2481 mkdir $ATSRoot."\\components" || die ("DIED: unable to create component dir");
2486 foreach my $ref(@datList)
2489 ($lib, $module,$ext) = @inarr;
2490 @generatedModules = ($module);
2492 CopyDlls($lib,$ext);
2505 ["*.xml", "ngi_sa_amrrecording", "/audio/lowlevelaudio/internal/sa_amrrecording/group/"],
2506 ["*.xml", "ngi_sa_highlevelaudio", "/audio/highlevelaudio/internal/sa_highlevelaudio/group/"],
2507 ["*.xml", "ngi_sa_audiomixing", "/audio/lowlevelaudio/internal/sa_audiomixing/group/"],
2508 ["*.xml", "ngi_sa_audiorecording", "/audio/lowlevelaudio/internal/sa_audiorecording/group/"],
2509 ["*.xml", "ngi_sa_clip", "/audio/lowlevelaudio/internal/sa_clip/group/"],
2510 ["*.xml", "ngi_sa_lowlevelaudio", "/audio/lowlevelaudio/internal/sa_lowlevelaudio/group/"],
2511 ["*.xml", "ngi_sa_stream", "/audio/lowlevelaudio/internal/sa_stream/group/"],
2513 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_antitearing/group/"],
2514 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_colortranslation/group/"],
2515 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_createfb565/group/"],
2516 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_createfb888/group/"],
2517 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_heapusage/group/"],
2518 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_multibb/group/"],
2519 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_performance/group/"],
2520 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_plswitching/group/"],
2521 ["*.xml", "ngi_sa_backbuffer", "/graphics/backbuffer/internal/sa_bb_misc/group/"],
2522 ["*.xml", "ngi_sa_bitmap", "/graphics/bitmap/internal/sa_bitmap/group/"],
2523 ["*.xml", "ngi_sa_camera", "/graphics/camera/internal/sa_camera/group/"],
2524 ["*.xml", "ngi_sa_images", "/graphics/images/internal/sa_images/group/"],
2525 ["*.xml", "ngi_sa_display", "/graphics/display/internal/sa_display/group/"],
2526 ["*.xml", "ngi_sa_lights", "/graphics/lights/internal/sa_lights/group/"],
2527 ["*.xml", "ngi_sa_videoplayback", "/graphics/video/internal/sa_videoplayback/group/"],
2529 ["*.xml", "ngi_sa_input", "/input/input/internal/sa_input/group/"],
2530 ["*.xml", "ngi_sa_textinput", "/input/textinput/internal/sa_textinput/group/"],
2531 ["*.xml", "ngi_sa_devicecapabilities", "/system/devicecapabilities/internal/sa_devicecapabilities/group/"],
2532 ["*.xml", "ngi_sa_devicestatus", "/system/devicestatus/internal/sa_phone/group/"],
2533 ["*.xml", "ngi_sa_runtimetester", "/system/runtime/internal/sa_runtimetester/group/"],
2534 ["*.xml", "ngi_sa_timing", "/timing/internal/sa_timing/group/"],
2542 #now copy the files appropriately
2543 foreach my $ref(@list)
2546 ($fname, $moduleDst, $location) = @inarr;
2547 my $src = GetPathPrefix().$location.$fname;
2548 my $dst = $ATSRoot."\\components\\$moduleDst";
2550 #print "My src is $src\n";
2551 #print "My dst is $dst\n";
2553 my @filesFound = glob($src);
2554 if(scalar @filesFound == 0)
2556 warn("warning: no xml file found to copy from $src!");
2558 foreach my $file(@filesFound)
2560 copy($file, $dst) || die("DIED: unable to copy $file to $dst");
2572 ["ngi", "sa_amrrecording", ".dll"],
2573 ["ngi", "sa_highlevelaudio", ".dll"],
2574 ["ngi", "sa_audiomixing", ".dll"],
2575 ["ngi", "sa_audiorecording", ".dll"],
2576 ["ngi", "sa_clip", ".dll"],
2577 ["ngi", "sa_lowlevelaudio", ".dll"],
2578 ["ngi", "sa_stream", ".dll"],
2579 ["ngi", "sa_bitmap", ".dll"],
2580 ["ngi", "sa_camera", ".dll"],
2581 ["ngi", "sa_images", ".dll"],
2582 ["ngi", "sa_display", ".dll"],
2583 ["ngi", "sa_lights", ".dll"],
2584 ["ngi", "sa_videoplayback", ".dll"],
2585 ["ngi", "sa_input", ".dll"],
2586 ["ngi", "sa_textinput", ".dll"],
2587 ["ngi", "sa_devicecapabilities", ".dll"],
2588 ["ngi", "sa_devicestatus", ".dll"],
2589 ["ngi", "sa_runtimetester", ".dll"],
2590 ["ngi", "sa_timing", ".dll"],
2595 mkdir $ATSRoot."\\components" || die ("DIED: unable to create component dir");
2601 foreach my $ref(@datList)
2604 ($lib, $module,$ext) = @inarr;
2605 @generatedModules = ($module);
2607 CopyDlls($lib,$ext);
2610 @generatedModules =("sa_backbuffer");
2614 "sa_bb_antitearing.dll",
2615 "sa_bb_colortranslation.dll",
2616 "sa_bb_createfb444.dll",
2617 "sa_bb_createfb565.dll",
2618 "sa_bb_createfb888.dll",
2620 "sa_bb_heapusage.dll",
2621 "sa_bb_multibb.dll",
2622 "sa_bb_performance.dll",
2623 "sa_bb_plswitch.dll",
2626 CopyMultiDlls("ngi");
2629 mkdir $ATSRoot."\\components\\shared" || die("Wouldn't make shared folder in $ATSRoot\\components");
2630 mkdir $ATSRoot."\\components\\shared\\winscw_udeb" || die("Wouldn't make shared folder in $ATSRoot\\components\winscw_udeb");
2631 mkdir $ATSRoot."\\components\\shared\\armv5_urel" || die("Wouldn't make shared folder in $ATSRoot\\components\armv5_urel");
2639 my $libname = shift @_;
2641 if($target eq "winsspd" && $sdkversion ne "")
2643 @globlist = ("winsspd_".$sdkversion);
2644 #print "winsspd ".$sdkversion." selected\n";
2646 elsif($target eq "winsspd")
2648 @globlist = ("winsspd");
2649 #print "winsspd selected\n";
2651 elsif($sdkversion ne "")
2653 @globlist = ($target,"hw_".$sdkversion);
2654 #print "$target $sdkversion selected\n";
2658 @globlist = ($target,"hw");
2659 #print "$target $sdkversion selected\n";
2662 foreach my $module(@generatedModules)
2664 my $glob_to_use = "";
2666 foreach my $glob(@globlist)
2668 my $src = $ATSRoot."/components/".$libname."_"."$module/*.xml";
2669 #print "Analysing $module and $glob\n";
2670 @fileList = glob($src);
2671 foreach my $file(@fileList)
2673 my $pat = $glob."\_component\.xml";
2674 #print "[$file - $glob"."_component.xml"."]\n";
2677 $glob_to_use = $pat;
2678 #print "[$file - $glob"."_component.xml"."]\n";
2682 if($glob_to_use ne "")
2687 if($glob_to_use ne "")
2689 #print "Using the glob $glob_to_use\n";
2690 my $src = $ATSRoot."/components/".$libname."_"."$module/*.xml";
2691 @fileList = glob($src);
2692 foreach my $file(@fileList)
2694 #print "[$file - $glob_to_use]\n";
2695 if($file =~ /$glob_to_use/)
2697 $file =~ /.*components[\\\/](.*)/;
2699 $value =~ s/\//\\/g;
2700 #print "adding $value for $module with $glob_to_use\n";
2701 unshift @foundList,$value;
2707 warn("Unable to figure out glob to use for $module. Skipping...\n");