Closed
Bug 488279
Opened 16 years ago
Closed 15 years ago
on winmo the perf tests language/string/split.as and language/string/typed/split.as does not run
Categories
(Tamarin Graveyard :: Virtual Machine, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
Future
People
(Reporter: dschaffe, Assigned: dschaffe)
Details
Attachments
(1 file)
12.39 KB,
patch
|
brbaker
:
review+
|
Details | Diff | Splinter Review |
on windows mobile the language/string/split.as and language/string/typed/split.as exits with no output. When I change the size to 10000 (from 50000) the test runs ok (in the emulator).
The non-desktop size was set to 50000 also. Should we lower the size?
I skipped the test for now.
Flags: flashplayer-triage+
Flags: flashplayer-qrb?
Comment 1•16 years ago
|
||
Exit with no output never sounds like a bug, so the bug should be found and fixed before the test size is lowered (even if that might be the right thing to do).
Assignee: nobody → dschaffe
Flags: flashplayer-qrb? → flashplayer-qrb+
Priority: -- → P3
Target Milestone: --- → flash10.x
Comment 3•15 years ago
|
||
Almost certainly an OOM issue, we're constructing a string with 28,550,000 characters which is then split apart into 4,100,000 separate strings; a small device is unlikely to handle that. At 10,000 the volumes would be 5,710,000 and 820,000 respectively - much more likely.
Need to verify that the OOM handling signals OOM correctly, then reduce the test size on non-desktop.
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•15 years ago
|
||
confirmed language/string/split.as and language/string/typed/split.as both output error: out of memory and exit with code=128. I lowered the non-desktop config to 40,000 (from 50,000) and the test runs on the tg01 in < 2s. provided patch with just the changes (the line endings for split were messed up in tamarin-redux).
Assignee | ||
Comment 5•15 years ago
|
||
Attachment #407842 -
Flags: review?(brbaker)
Updated•15 years ago
|
Attachment #407842 -
Flags: review?(brbaker) → review+
Assignee | ||
Comment 6•15 years ago
|
||
moving target to future since the bug is not required for 10.1 release.
Target Milestone: flash10.1 → Future
Assignee | ||
Comment 7•15 years ago
|
||
pushed fix in 2928:50b9ce61ce2e
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•