Skip to content

Commit 8dd2354

Browse files
committed
fix functors test when not using libffi
1 parent da2d778 commit 8dd2354

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

tests/interface/functors/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,9 @@ if (SOUFFLE_DOMAIN_64BIT)
4747
target_compile_definitions(functors
4848
PUBLIC RAM_DOMAIN_SIZE=64)
4949
endif()
50+
51+
if (SOUFFLE_USE_LIBFFI)
52+
target_compile_definitions(functors
53+
PUBLIC USE_LIBFFI)
54+
endif()
55+

tests/interface/functors/functors.dl

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
.functor factorial(unsigned):unsigned
1313
.functor rnd(float):number
1414
.functor incr(float):float
15-
.functor concat(float, number, unsigned, symbol):symbol
1615

1716
.decl A(x:number)
1817
A(@foo(1,"123")) :- true.
@@ -62,10 +61,16 @@ I(@incr(1)) :- true.
6261
.output I
6362

6463
.decl CC(f:float, i:number, u:unsigned, s:symbol, res:symbol)
64+
.output CC
65+
#if defined (USE_LIBFFI)
66+
// when Souffle is built with libffi we can call stateless functors with arbitrary arguments
67+
.functor concat(float, number, unsigned, symbol):symbol
6568
CC(f,i,u,s,res) :-
6669
f = 1.25, i=-4, u=1000u, s="message",
6770
res = @concat(1.25, -4, 1000, "message").
68-
.output CC
71+
#else
72+
CC(1.25, -4, 1000u, "message", "1.250000-41000message").
73+
#endif
6974

7075

7176
// Testing stateful functors

0 commit comments

Comments
 (0)