FFI: FFI-PoolsTests-monty.1.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FFI: FFI-PoolsTests-monty.1.mcz

commits-2
Marcel Taeumel uploaded a new version of FFI-PoolsTests to project FFI:
http://source.squeak.org/FFI/FFI-PoolsTests-monty.1.mcz

==================== Summary ====================

Name: FFI-PoolsTests-monty.1
Author: monty
Time: 29 March 2018, 3:33:37.642076 am
UUID: c51bf9e0-e924-0d00-a9ba-bb910f3fa160
Ancestors:

some FFISharedPool test classes

==================== Snapshot ====================

SystemOrganization addCategory: #'FFI-PoolsTests'!

FFISharedPool subclass: #FFITestDirectLoopSharedPool
        instanceVariableNames: ''
        classVariableNames: ''
        poolDictionaries: ''
        category: 'FFI-PoolsTests'!

----- Method: FFITestDirectLoopSharedPool class>>one (in category 'definitions') -----
one
        <ffiSharedPool>
        <ffiInheritsFrom: #two>!

----- Method: FFITestDirectLoopSharedPool class>>two (in category 'definitions') -----
two
        <ffiSharedPool>
        <ffiInheritsFrom: #one>!

FFISharedPool subclass: #FFITestIndirectLoopSharedPool
        instanceVariableNames: ''
        classVariableNames: ''
        poolDictionaries: ''
        category: 'FFI-PoolsTests'!

----- Method: FFITestIndirectLoopSharedPool class>>one (in category 'accessing structure variables') -----
one
        <ffiSharedPool>
        <ffiInheritsFrom: #three>!

----- Method: FFITestIndirectLoopSharedPool class>>three (in category 'definitions') -----
three
        <ffiSharedPool>
        <ffiInheritsFrom: #two>!

----- Method: FFITestIndirectLoopSharedPool class>>two (in category 'definitions') -----
two
        <ffiSharedPool>
        <ffiInheritsFrom: #one>!

FFISharedPool subclass: #FFITestStandardSharedPool
        instanceVariableNames: ''
        classVariableNames: 'EAGAIN EPERM EWOULDBLOCK M_PI ULONG_MAX'
        poolDictionaries: ''
        category: 'FFI-PoolsTests'!

----- Method: FFITestStandardSharedPool class>>one (in category 'definitions') -----
one
        <ffiSharedPool>
        <ffiPlatformName: 'unix'>
        <ffiCHeaders: #('<math.h>' '<limits.h>')>
        <ffiVariable: #M_PI type: #Float>
        <ffiVariable: #ULONG_MAX type: #LargePositiveInteger>!

----- Method: FFITestStandardSharedPool class>>three (in category 'definitions') -----
three
        <ffiSharedPool>
        <ffiInheritsFrom: #two>
        <ffiCCompiler: 'gcc'>
        <ffiVariable: #EAGAIN type: #Integer>
        <ffiVariable: #EWOULDBLOCK type: #Integer>
        <ffiVariable: #EPERM type: #Boolean>!

----- Method: FFITestStandardSharedPool class>>two (in category 'definitions') -----
two
        <ffiSharedPool>
        <ffiPlatformName: 'unix' wordSize: 4>
        <ffiCCompiler: 'gcc'>
        <ffiCFlags: '-Wall -o'>
        <ffiCHeaders: #('<math.h>' '<limits.h>' '<assert.h>')>
        <ffiVariable: #M_PI type: #Float>
        <ffiVariable: #ULONG_MAX type: #LargePositiveInteger>
        <ffiVariable: #EAGAIN type: nil>
        <ffiVariable: #EWOULDBLOCK type: nil>!

FFISharedPool subclass: #FFITestUnknownReferenceSharedPool
        instanceVariableNames: ''
        classVariableNames: ''
        poolDictionaries: ''
        category: 'FFI-PoolsTests'!

----- Method: FFITestUnknownReferenceSharedPool class>>one (in category 'definitions') -----
one
        <ffiSharedPool>
        <ffiInheritsFrom: #unknown>!