sl@0
|
1 |
# Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
# All rights reserved.
|
sl@0
|
3 |
# This component and the accompanying materials are made available
|
sl@0
|
4 |
# under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
# which accompanies this distribution, and is available
|
sl@0
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
#
|
sl@0
|
8 |
# Initial Contributors:
|
sl@0
|
9 |
# Nokia Corporation - initial contribution.
|
sl@0
|
10 |
#
|
sl@0
|
11 |
# Contributors:
|
sl@0
|
12 |
#
|
sl@0
|
13 |
# Description:
|
sl@0
|
14 |
#
|
sl@0
|
15 |
|
sl@0
|
16 |
# Full build
|
sl@0
|
17 |
|
sl@0
|
18 |
use strict;
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
my $ARGC = @ARGV;
|
sl@0
|
22 |
if (($ARGV[0] eq "-h") ||
|
sl@0
|
23 |
($ARGV[0] eq "--h") ||
|
sl@0
|
24 |
($ARGV[0] eq "-help") ||
|
sl@0
|
25 |
($ARGV[0] eq "--help") ||
|
sl@0
|
26 |
($ARGV[0] eq "help")
|
sl@0
|
27 |
)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
print "fullMmBuild\n\n";
|
sl@0
|
30 |
print "Syntax : fullMmBuild [-x] [-k] [-c] [-f] [-eabi] [-y] [-a] [-g] [-s] [-dir=directory] [-a3flog]\n";
|
sl@0
|
31 |
print "-x include optional elements\n";
|
sl@0
|
32 |
print "-k keep going\n";
|
sl@0
|
33 |
print "-c clean build\n";
|
sl@0
|
34 |
print "-f build A3F and A3F DevSound instead of Legacy DevSound\n";
|
sl@0
|
35 |
print "-l build Legacy DevSound instead of A3F (ignored if -f given)\n";
|
sl@0
|
36 |
print "-eabi build rom for armv5 EABI\n";
|
sl@0
|
37 |
print "-arm4 build the extra components for arm4\n";
|
sl@0
|
38 |
print "-y build for ccover (wins only)\n";
|
sl@0
|
39 |
print "-a call mmbuildrom with MMAutoExec.iby\n";
|
sl@0
|
40 |
print "-g include build of gccxml target, to allow check of BC etc\n";
|
sl@0
|
41 |
print "-s skip setup and makefile stages (useful on rebuild following minor changes)\n";
|
sl@0
|
42 |
print "-dir location of TestTools\\Build directory\n";
|
sl@0
|
43 |
print "-a3flog enables A3F logging\n";
|
sl@0
|
44 |
print "-iclTestdata builds ICL test data\n";
|
sl@0
|
45 |
exit 0;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
|
sl@0
|
49 |
use Getopt::Long;
|
sl@0
|
50 |
my %optctl = ();
|
sl@0
|
51 |
keys(%optctl)=8;
|
sl@0
|
52 |
unless (GetOptions (\%optctl, "x", "c", "k", "f", "eabi" ,"y", "a", "g", "s", "l", "dir=s","arm4","a3flog","iclTestdata"))
|
sl@0
|
53 |
{exit 1;}
|
sl@0
|
54 |
|
sl@0
|
55 |
my $ccover_target = "wins";
|
sl@0
|
56 |
my $eka2IdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\winscw\\udeb\\winsgui.dll"; # if file present, is EKA2 build
|
sl@0
|
57 |
my $x86gccIdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\x86gcc\\udeb\\euser.dll"; # if file present, x86 environment present
|
sl@0
|
58 |
|
sl@0
|
59 |
# main
|
sl@0
|
60 |
{
|
sl@0
|
61 |
my $auto = "-a " if ($optctl{"a"});
|
sl@0
|
62 |
my $optional = "-x " if ($optctl{"x"});
|
sl@0
|
63 |
my $eabi = "-eabi " if ($optctl{"eabi"});
|
sl@0
|
64 |
my $keep = "-k " if ($optctl{"k"});
|
sl@0
|
65 |
my $target = ""; # default to all
|
sl@0
|
66 |
my $gccxml = "-g " if ($optctl{"g"});
|
sl@0
|
67 |
my $skipSetup = "-s " if ($optctl{"s"});
|
sl@0
|
68 |
my $iclTest = " --iclTestdata " if ($optctl{"iclTestdata"});
|
sl@0
|
69 |
$target = " " . $ccover_target if ($optctl{"y"});
|
sl@0
|
70 |
|
sl@0
|
71 |
################## A3F Section #######################################
|
sl@0
|
72 |
my $a3f_define = 'SYMBIAN_MULTIMEDIA_A3FDEVSOUND';
|
sl@0
|
73 |
my $search_item = '#define\s+'.$a3f_define; # looking for this
|
sl@0
|
74 |
my $hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\Symbian_OS.hrh"; # assign hrh file and location
|
sl@0
|
75 |
my $found_search_item = 0; #false
|
sl@0
|
76 |
# print "HRH filename is : $hrh_filename\n";
|
sl@0
|
77 |
|
sl@0
|
78 |
if ($optctl{"f"})
|
sl@0
|
79 |
{
|
sl@0
|
80 |
# This displays the content of the hash table
|
sl@0
|
81 |
# use it to confirm the "f" entry has been added.
|
sl@0
|
82 |
#
|
sl@0
|
83 |
# my $key; # holds the command line options
|
sl@0
|
84 |
# my $value; # redundant for hash entry as only a key is used.
|
sl@0
|
85 |
# while (($key, $value) = each(%optctl))
|
sl@0
|
86 |
# {
|
sl@0
|
87 |
# print $key.", ".$value."\n";
|
sl@0
|
88 |
# }
|
sl@0
|
89 |
|
sl@0
|
90 |
# opens up the hrh file for reading
|
sl@0
|
91 |
open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
|
sl@0
|
92 |
|
sl@0
|
93 |
my @file_data=<FILEHANDLE>; # read all file data into array
|
sl@0
|
94 |
|
sl@0
|
95 |
#check the contents of the array (i.e. the contents of the file)
|
sl@0
|
96 |
for(@file_data)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
# print "$_\n"; #display the line in the file
|
sl@0
|
99 |
|
sl@0
|
100 |
# search line for string of interest: =~ is equals, !~ is not equal
|
sl@0
|
101 |
if(($_ =~ m/$search_item/i))
|
sl@0
|
102 |
{
|
sl@0
|
103 |
$found_search_item = 1; #found the macro
|
sl@0
|
104 |
# print "Search item found: $_\n"; #display the line containing the search item
|
sl@0
|
105 |
}
|
sl@0
|
106 |
else
|
sl@0
|
107 |
{
|
sl@0
|
108 |
# Search item not found, do nothing
|
sl@0
|
109 |
}
|
sl@0
|
110 |
} #for loop
|
sl@0
|
111 |
|
sl@0
|
112 |
close(FILEHANDLE) or die "Can't close file $hrh_filename.\n"; # readonly file
|
sl@0
|
113 |
|
sl@0
|
114 |
if(!$found_search_item) #search item has not been found
|
sl@0
|
115 |
{
|
sl@0
|
116 |
# print warning
|
sl@0
|
117 |
print "Modifying file $hrh_filename to enable A3F as -f flag has been used.\n";
|
sl@0
|
118 |
|
sl@0
|
119 |
# open file for append
|
sl@0
|
120 |
open(FILEHANDLE, ">>", $hrh_filename) or die "Unable to open $hrh_filename for appending. $!\n";
|
sl@0
|
121 |
print FILEHANDLE "\n#define $a3f_define\n"; # append macro to the file
|
sl@0
|
122 |
close(FILEHANDLE) or die "Can't close appended file $hrh_filename.\n"; # readonly file
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
# Now remove the "f" from the hash table so there is no chance of it being passed
|
sl@0
|
126 |
# to mmbuildrom.
|
sl@0
|
127 |
######## NOTE removal of flag from Hash table ############
|
sl@0
|
128 |
delete($optctl{f});
|
sl@0
|
129 |
|
sl@0
|
130 |
# This displays the content of the hash table
|
sl@0
|
131 |
# use it to confirm the "f" entry has been removed.
|
sl@0
|
132 |
#
|
sl@0
|
133 |
# while (($key, $value) = each(%optctl))
|
sl@0
|
134 |
# {
|
sl@0
|
135 |
# print $key.", ".$value."\n";
|
sl@0
|
136 |
# }
|
sl@0
|
137 |
} # if $optctl{"f"}
|
sl@0
|
138 |
elsif ($optctl{"l"})
|
sl@0
|
139 |
{
|
sl@0
|
140 |
########### Remove the macro from the hrh as "-l" but not "-f" is specified ###############
|
sl@0
|
141 |
|
sl@0
|
142 |
$found_search_item = 0 ; # false
|
sl@0
|
143 |
# opens up the original hrh file for reading
|
sl@0
|
144 |
open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
|
sl@0
|
145 |
|
sl@0
|
146 |
# temporary file
|
sl@0
|
147 |
my $temp_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\temp_Symbian_OS.hrh";
|
sl@0
|
148 |
# open temporary file for writing
|
sl@0
|
149 |
open(TEMPFILEHANDLE, ">", $temp_hrh_filename) or die "can't open tempory file $temp_hrh_filename. $!\n";
|
sl@0
|
150 |
|
sl@0
|
151 |
my @file_data=<FILEHANDLE>; # read all original hrh file data into array
|
sl@0
|
152 |
|
sl@0
|
153 |
#check the contents of the array (i.e. the contents of the file)
|
sl@0
|
154 |
for(@file_data)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
# print "$_\n"; #display the line in the file
|
sl@0
|
157 |
|
sl@0
|
158 |
# search line for string of interest: =~ is equals, !~ is not equal
|
sl@0
|
159 |
if(($_ =~ m/(.*)$search_item(.*)/i))
|
sl@0
|
160 |
{
|
sl@0
|
161 |
#display a warning message (only do so once)
|
sl@0
|
162 |
if( !$found_search_item )
|
sl@0
|
163 |
{
|
sl@0
|
164 |
print "Modifying file $hrh_filename to disable A3F as -l has been given.\n";
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
# write line excluding the #define bit to temp file. (to preserve any other bits in this line. e.g.: comment delimiters)
|
sl@0
|
168 |
print TEMPFILEHANDLE $1." ".$2."\n";
|
sl@0
|
169 |
$found_search_item = 1 ; # true
|
sl@0
|
170 |
# Do not write line to the file as we want to remove it.
|
sl@0
|
171 |
}
|
sl@0
|
172 |
else
|
sl@0
|
173 |
{
|
sl@0
|
174 |
print TEMPFILEHANDLE $_; # copy unchanged line to temporary file
|
sl@0
|
175 |
}
|
sl@0
|
176 |
} #for loop
|
sl@0
|
177 |
|
sl@0
|
178 |
close(FILEHANDLE) or die "Can't close file $hrh_filename.$!\n"; # readonly file
|
sl@0
|
179 |
close(TEMPFILEHANDLE) or die "Can't close file $temp_hrh_filename. $!\n"; # temp file
|
sl@0
|
180 |
if($found_search_item)
|
sl@0
|
181 |
{
|
sl@0
|
182 |
my $orig_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\orig.hrh";
|
sl@0
|
183 |
rename($hrh_filename, $orig_hrh_filename) or die "can't rename $hrh_filename to $orig_hrh_filename: $!\n";
|
sl@0
|
184 |
rename($temp_hrh_filename, $hrh_filename) or die "can't rename $temp_hrh_filename to $hrh_filename: $!\n";
|
sl@0
|
185 |
unlink $orig_hrh_filename; # delete the original as it is no longer needed
|
sl@0
|
186 |
}
|
sl@0
|
187 |
else
|
sl@0
|
188 |
{
|
sl@0
|
189 |
unlink $temp_hrh_filename; # no changes to be made so delete the temporary file
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
} # main else for A3F
|
sl@0
|
193 |
|
sl@0
|
194 |
################## End A3F Section ####################################
|
sl@0
|
195 |
|
sl@0
|
196 |
################## A3F Logging Section ####################################
|
sl@0
|
197 |
|
sl@0
|
198 |
my $search_item = "SYMBIAN_MULTIMEDIA_A3F_ENABLE_LOGGING"; # looking for this
|
sl@0
|
199 |
my $hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\Symbian_OS.hrh"; # assign hrh file and location
|
sl@0
|
200 |
my $found_search_item = 0; #false
|
sl@0
|
201 |
|
sl@0
|
202 |
if ($optctl{"a3flog"})
|
sl@0
|
203 |
{
|
sl@0
|
204 |
# opens up the hrh file for reading
|
sl@0
|
205 |
open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
|
sl@0
|
206 |
|
sl@0
|
207 |
my @file_data=<FILEHANDLE>; # read all file data into array
|
sl@0
|
208 |
|
sl@0
|
209 |
#check the contents of the array (i.e. the contents of the file)
|
sl@0
|
210 |
for(@file_data)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
# search line for string of interest: =~ is equals, !~ is not equal
|
sl@0
|
213 |
if(($_ =~ m/$search_item/i))
|
sl@0
|
214 |
{
|
sl@0
|
215 |
$found_search_item = 1; #found the macro
|
sl@0
|
216 |
}
|
sl@0
|
217 |
else
|
sl@0
|
218 |
{
|
sl@0
|
219 |
# Search item not found, do nothing
|
sl@0
|
220 |
}
|
sl@0
|
221 |
} #for loop
|
sl@0
|
222 |
|
sl@0
|
223 |
close(FILEHANDLE) or die "Can't close file $hrh_filename.\n"; # readonly file
|
sl@0
|
224 |
|
sl@0
|
225 |
if(!$found_search_item) #search item has not been found
|
sl@0
|
226 |
{
|
sl@0
|
227 |
# open file for append
|
sl@0
|
228 |
open(FILEHANDLE, ">>", $hrh_filename) or die "Unable to open $hrh_filename for appending. $!\n";
|
sl@0
|
229 |
print FILEHANDLE "\n#define $search_item\n"; # append macro to the file
|
sl@0
|
230 |
close(FILEHANDLE) or die "Can't close appended file $hrh_filename.\n"; # readonly file
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
# Now remove the "log" from the hash table so there is no chance of it being passed
|
sl@0
|
234 |
# to anything called in this file.
|
sl@0
|
235 |
######## NOTE removal of flag from Hash table ############
|
sl@0
|
236 |
delete($optctl{log});
|
sl@0
|
237 |
} # if $optctl{"log"}
|
sl@0
|
238 |
else
|
sl@0
|
239 |
{
|
sl@0
|
240 |
########### Remove the macro from the hrh as "-a3flog" is not specified ###############
|
sl@0
|
241 |
|
sl@0
|
242 |
$found_search_item = 0 ; # false
|
sl@0
|
243 |
# opens up the original hrh file for reading
|
sl@0
|
244 |
open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
|
sl@0
|
245 |
|
sl@0
|
246 |
# temporary file
|
sl@0
|
247 |
my $temp_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\temp_Symbian_OS.hrh";
|
sl@0
|
248 |
# open temporary file for writing
|
sl@0
|
249 |
open(TEMPFILEHANDLE, ">", $temp_hrh_filename) or die "can't open tempory file $temp_hrh_filename. $!\n";
|
sl@0
|
250 |
|
sl@0
|
251 |
my @file_data=<FILEHANDLE>; # read all original hrh file data into array
|
sl@0
|
252 |
|
sl@0
|
253 |
#check the contents of the array (i.e. the contents of the file)
|
sl@0
|
254 |
for(@file_data)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
# search line for string of interest: =~ is equals, !~ is not equal
|
sl@0
|
257 |
if(($_ =~ m/$search_item/i))
|
sl@0
|
258 |
{
|
sl@0
|
259 |
#display a warning message
|
sl@0
|
260 |
print "Removing $_ from file $hrh_filename as -a3flog flag has not been used to indicate an A3F logging build is required.\n";
|
sl@0
|
261 |
$found_search_item = 1 ; # true
|
sl@0
|
262 |
# Do not write line to the file as we want to remove it.
|
sl@0
|
263 |
}
|
sl@0
|
264 |
else
|
sl@0
|
265 |
{
|
sl@0
|
266 |
# Ensure the last newline after the macro is not written to the file.
|
sl@0
|
267 |
# the last new line was added by the macro append in the previous section.
|
sl@0
|
268 |
# The asssumes the macro is the last entry in the file. If it is not then
|
sl@0
|
269 |
# the if statement should be removed and the print statement left on its own
|
sl@0
|
270 |
# to copy the last line to file.
|
sl@0
|
271 |
if(!$found_search_item)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
print TEMPFILEHANDLE $_; # copy unchanged line to temporary file
|
sl@0
|
274 |
}
|
sl@0
|
275 |
}
|
sl@0
|
276 |
} #for loop
|
sl@0
|
277 |
|
sl@0
|
278 |
close(FILEHANDLE) or die "Can't close file $hrh_filename.$!\n"; # readonly file
|
sl@0
|
279 |
close(TEMPFILEHANDLE) or die "Can't close file $temp_hrh_filename. $!\n"; # temp file
|
sl@0
|
280 |
if($found_search_item)
|
sl@0
|
281 |
{
|
sl@0
|
282 |
my $orig_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\orig.hrh";
|
sl@0
|
283 |
rename($hrh_filename, $orig_hrh_filename) or die "can't rename $hrh_filename to $orig_hrh_filename: $!\n";
|
sl@0
|
284 |
rename($temp_hrh_filename, $hrh_filename) or die "can't rename $temp_hrh_filename to $hrh_filename: $!\n";
|
sl@0
|
285 |
unlink $orig_hrh_filename; # delete the original as it is no longer needed
|
sl@0
|
286 |
}
|
sl@0
|
287 |
else
|
sl@0
|
288 |
{
|
sl@0
|
289 |
unlink $temp_hrh_filename; # no changes to be made so delete the temporary file
|
sl@0
|
290 |
}
|
sl@0
|
291 |
|
sl@0
|
292 |
} # main else for A3F
|
sl@0
|
293 |
|
sl@0
|
294 |
################## End A3F Logging Section ####################################
|
sl@0
|
295 |
|
sl@0
|
296 |
if($optctl{"dir"})
|
sl@0
|
297 |
{
|
sl@0
|
298 |
my $dir = $optctl{"dir"};
|
sl@0
|
299 |
chdir $dir or die "Can't cd $dir - $!";
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
my $targetToolsDir = "..\\..\\..\\..\\..\\TargetTools\\Build";
|
sl@0
|
303 |
my $testToolsDir = "..\\..\\..\\..\\..\\os\\mm\\mmtestenv\\mmtesttools\\Build";
|
sl@0
|
304 |
my $targetToolsExists = 0;
|
sl@0
|
305 |
if (-d $targetToolsDir)
|
sl@0
|
306 |
{
|
sl@0
|
307 |
$targetToolsExists = 1;
|
sl@0
|
308 |
print "TargetTools directory exists: $targetToolsDir\n"
|
sl@0
|
309 |
}
|
sl@0
|
310 |
|
sl@0
|
311 |
# DEF113945:DRM tests fail due to the change from DEF112928
|
sl@0
|
312 |
my $rtaUtilsDir = "..\\..\\..\\..\\..\\Rtautils\\Build";
|
sl@0
|
313 |
my $rtaUtilsExists = 0;
|
sl@0
|
314 |
if (-d $rtaUtilsDir)
|
sl@0
|
315 |
{
|
sl@0
|
316 |
$rtaUtilsExists = 1;
|
sl@0
|
317 |
print "RtaUtils directory exists: $rtaUtilsDir\n";
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
# DEF113945:DRM tests fail due to the change from DEF112928
|
sl@0
|
321 |
my $testExecuteDir = "..\\..\\..\\..\\..\\Testexecute\\Build";
|
sl@0
|
322 |
my $testExecuteExists = 0;
|
sl@0
|
323 |
if (-d $testExecuteDir)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
$testExecuteExists = 1;
|
sl@0
|
326 |
print "TestExecute directory exists: $testExecuteDir\n";
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
my $command;
|
sl@0
|
330 |
|
sl@0
|
331 |
# mmbuild [-x] [-k] setup
|
sl@0
|
332 |
$command = "mmbuild " . $optional . $keep . "setup" . $iclTest;
|
sl@0
|
333 |
if ($skipSetup ne "")
|
sl@0
|
334 |
{
|
sl@0
|
335 |
print "Skipping setup...\n";
|
sl@0
|
336 |
}
|
sl@0
|
337 |
else
|
sl@0
|
338 |
{
|
sl@0
|
339 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
340 |
}
|
sl@0
|
341 |
|
sl@0
|
342 |
if ($optctl{"c"})
|
sl@0
|
343 |
{
|
sl@0
|
344 |
# mmbuild -t clean (throw away result - so we ignore any no-export errors)
|
sl@0
|
345 |
$command = "mmbuild -t clean >\$NULL 2>&1";
|
sl@0
|
346 |
print $command, "\n";
|
sl@0
|
347 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
348 |
}
|
sl@0
|
349 |
|
sl@0
|
350 |
# mmbuild [-k] [-g] build
|
sl@0
|
351 |
$command = "mmbuild ". $keep. $gccxml. $skipSetup. "build" . $target . $iclTest;
|
sl@0
|
352 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
353 |
|
sl@0
|
354 |
# mmbuild -t [-k] build
|
sl@0
|
355 |
$command = "mmbuild -t ". $keep. $skipSetup. "build" . $target . $iclTest;
|
sl@0
|
356 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
357 |
|
sl@0
|
358 |
# mmbuild -t -b [-k] build
|
sl@0
|
359 |
$command = "mmbuild -t -b ". $keep. $skipSetup. "build" . $target . $iclTest;
|
sl@0
|
360 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
361 |
|
sl@0
|
362 |
if (!$optctl{"y"})
|
sl@0
|
363 |
{
|
sl@0
|
364 |
# DEF113945:DRM tests fail due to the change from DEF112928
|
sl@0
|
365 |
if ($rtaUtilsExists)
|
sl@0
|
366 |
{
|
sl@0
|
367 |
$command = "testExtras_Rtautils";
|
sl@0
|
368 |
chdir $rtaUtilsDir or die "Can't cd $rtaUtilsDir - $!";
|
sl@0
|
369 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
370 |
chdir $testToolsDir or die "Can't cd $testToolsDir - $!";
|
sl@0
|
371 |
}
|
sl@0
|
372 |
|
sl@0
|
373 |
# DEF113945:DRM tests fail due to the change from DEF112928
|
sl@0
|
374 |
if($testExecuteExists)
|
sl@0
|
375 |
{
|
sl@0
|
376 |
$command = "testExtras_Testexecute";
|
sl@0
|
377 |
chdir $testExecuteDir or die "Can't cd $testExecuteDir - $!";
|
sl@0
|
378 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
379 |
chdir $testToolsDir or die "Can't cd $testToolsDir - $!";
|
sl@0
|
380 |
}
|
sl@0
|
381 |
|
sl@0
|
382 |
# mmBuildRom [-x]
|
sl@0
|
383 |
$command = "mmBuildRom -t -d " .$auto . $optional .$eabi;
|
sl@0
|
384 |
print $command, "\n";
|
sl@0
|
385 |
(system ($command)==0 )or die "Couldn't execute $command";
|
sl@0
|
386 |
}
|
sl@0
|
387 |
|
sl@0
|
388 |
}
|