]> gitweb.factorcode.org Git - factor.git/blob - extra/llvm/ffi/ffi-tests.factor
more test IN: cleanup.
[factor.git] / extra / llvm / ffi / ffi-tests.factor
1 ! Copyright (C) 2017 Björn Lindqvist
2 USING: kernel llvm.ffi tools.test ;
3
4 { } [
5     "my_module" LLVMModuleCreateWithName
6     ! dup LLVMDumpModule
7     LLVMDisposeModule
8 ] unit-test
9
10 { 10 } [
11     LLVMInt32Type 10 LLVMVectorType LLVMGetVectorSize
12 ] unit-test
13
14 { 32 } [
15     LLVMInt32Type LLVMGetIntTypeWidth
16 ] unit-test