Skip to content

Commit

Permalink
Fixing initialization and categorization
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Feb 21, 2022
1 parent 2cf68dc commit 4832058
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions smalltalksrc/VMMaker/VMMemoryMap.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ VMMemoryMap >> initialOldSpaceSize: anInteger [
VMMemoryMap >> initializeMemoryMap [

self cCode: [ ] inSmalltalk: [
memoryMapConfiguration := VMMemoryMapConfiguration forWordsize:
self class objectMemoryClass wordSize ]
memoryMapConfiguration := (VMMemoryMapConfiguration forWordsize:
self class objectMemoryClass wordSize) new ]
]

{ #category : #private }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Class {
'imageReaderClass',
'imageWriterClass'
],
#category : #'VMMakerTests-MemoryTests'
#category : #'VMMakerTests-ImageFormat'
}

{ #category : #tests }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #VMImageHeaderWritingTest,
#superclass : #VMAbstractImageFormatTest,
#category : #'VMMakerTests-MemoryTests'
#category : #'VMMakerTests-ImageFormat'
}

{ #category : #running }
Expand Down
2 changes: 1 addition & 1 deletion smalltalksrc/VMMakerTests/VMImageReadingTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'originalNilObjectIdentityHash'
],
#category : #'VMMakerTests-MemoryTests'
#category : #'VMMakerTests-ImageFormat'
}

{ #category : #utilities }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #VMSegmentsImageFormatTest,
#superclass : #VMAbstractImageFormatTest,
#category : #'VMMakerTests-MemoryTests'
#category : #'VMMakerTests-ImageFormat'
}

{ #category : #tests }
Expand Down

0 comments on commit 4832058

Please sign in to comment.