Changeset 17277 in webkit
- Timestamp:
- Oct 24, 2006, 9:23:13 PM (18 years ago)
- Location:
- trunk/WebKitTools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebKitTools/ChangeLog
r17253 r17277 1 2006-10-24 Stephanie Lewis <slewis@apple.com> 2 3 Reviewed by Maciej. 4 5 - Changed run-javascriptcore tests to build testkjs before running. 6 7 * Scripts/run-javascriptcore-tests: 8 1 9 2006-10-24 Nikolas Zimmermann <zimmermann@kde.org> 2 10 -
trunk/WebKitTools/Scripts/run-javascriptcore-tests
r17033 r17277 33 33 use lib $FindBin::Bin; 34 34 use webkitdirs; 35 use POSIX; 35 36 37 # determine configuration 38 my $configuration; 36 39 setConfiguration(); 40 $configuration = configuration(); 41 42 # Find JavaScriptCore directory 43 chdirWebKit(); 44 chdir("JavaScriptCore"); 45 46 #compile TestKJS 47 my @options = XcodeOptions(); 48 my $result; 49 if (isOSX()) { 50 $result = system "xcodebuild", "-project", "JavaScriptCore.xcodeproj", "-target", "testkjs", @options, @ARGV; 51 }elsif (isCygwin()) { 52 $result = buildVisualStudioProject( "JavaScriptCore" ); 53 } 54 exit WEXITSTATUS($result) if WEXITSTATUS($result); 55 37 56 my $productDir = productDir(); 38 39 chdirWebKit(); 40 chdir "JavaScriptCore/tests/mozilla" or die; 57 chdir "tests/mozilla" or die; 41 58 42 59 $productDir .= "/JavaScriptCore" if (isQt()); … … 44 61 45 62 my $testkjsName; 46 my $configuration;47 63 sub determineTestkjsName 48 64 { 49 65 return if $testkjsName; 50 $configuration = configuration();51 66 if (isCygwin() && ($configuration eq "Debug")) { 52 67 $testkjsName = "testkjs_debug"; … … 57 72 $testkjsName = determineTestkjsName(); 58 73 59 my$result = system "perl", "jsDriver.pl", "-e", "kjs", "-s", "$productDir/$testkjsName", "-f", "actual.html", @ARGV;74 $result = system "perl", "jsDriver.pl", "-e", "kjs", "-s", "$productDir/$testkjsName", "-f", "actual.html", @ARGV; 60 75 61 76 exit $result if $result;
Note:
See TracChangeset
for help on using the changeset viewer.