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