[Vm-dev] [OpenSmalltalk/opensmalltalk-vm] Reproduceable Segmentation fault while saving images (#444)

Guille Polito notifications at github.com
Wed Nov 27 09:51:50 UTC 2019


Last week I've been trying to have a simpler way to reproduce it (still on the way BTW).
@pavel-krivanek had handed us originally the following script that reproduces it with a high degree of certainty, but it depends on opening Calypso (which opens new processes...):

```smalltalk
20 timesRepeat: [ClyFullBrowser openOnMethod: SourceSansProRegular class>>#fontContents ].

1 to: 20 do: [ :i | Smalltalk snapshot: true andQuit: false ].
```
I've been trying to reduce it into something not depending on Calypso nor Pharo's startup. I got the following script that is longer to run, and does not reproduce the problem as often as Pavel's one.

```smalltalk
2000 timesRepeat: [
	[ 1000 timesRepeat: [ 
		[ (1 to: 100000) collect: [ :e | e ** 17 ] ] forkAt: 38 ] ] fork ].

1 to: 20 do: [ :i | Smalltalk snapshotPrimitive].
```
The good thing about this last script is that is shows also that the problem has nothing to do with the startup mechanism and whatever is running in it.

Enabling the leak checker starts shows output when snapshotting, but once the leak is produced it's too late, the objects leaking are already corrupted.

-- 
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
https://github.com/OpenSmalltalk/opensmalltalk-vm/issues/444#issuecomment-559013864
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/vm-dev/attachments/20191127/6954024f/attachment.html>


More information about the Vm-dev mailing list