Changeset 215195 in webkit
- Timestamp:
- Apr 10, 2017, 12:01:57 PM (8 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r215191 r215195 1 2017-04-10 Guillaume Emont <guijemont@igalia.com> 2 3 [JSC] Do not run FTL stress tests on MIPS 4 https://bugs.webkit.org/show_bug.cgi?id=170684 5 6 Reviewed by Carlos Alberto Lopez Perez. 7 8 run-jsc-stress-tests does not correctly detect MIPS platforms, and its 9 logic to detect if the platform supports FTL ignores that MIPS does 10 not support FTL. This adds detection of MIPS (with the magic number 11 determined empirically) and fixes the determination of whether we 12 support FTL. 13 14 * Scripts/run-jsc-stress-tests: 15 1 16 2017-04-10 Jonathan Bedard <jbedard@apple.com> 2 17 -
trunk/Tools/Scripts/run-jsc-stress-tests
r214985 r215195 341 341 when 3 342 342 "x86" 343 when 8 344 "mips" 343 345 when 62 344 346 "x86-64" … … 412 414 $hostOS = determineOS unless $hostOS 413 415 $architecture = determineArchitecture unless $architecture 414 $isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $ hostOS == "windows" || $hostOS == "linux" && $architecture == "arm64")416 $isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $architecture == "mips" || $hostOS == "windows" || $hostOS == "linux" && $architecture == "arm64") 415 417 416 418 if !$testRunnerType
Note:
See TracChangeset
for help on using the changeset viewer.