We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7727504 commit 4efcdabCopy full SHA for 4efcdab
Makefile
@@ -16,8 +16,6 @@ gdb-%.bin: %.bin Makefile
16
gdb -q -x run.gdb $<
17
18
test:
19
- mkdir -p ebin/
20
- cp binary16.c binary16.h ebin/
21
erl -make
22
23
clean:
tests/test_msb_ndx.erl
@@ -3,7 +3,9 @@
3
-compile(export_all).
4
5
prop_zero() ->
6
- ?SETUP(fun () -> eqc_c:start(binary16),
+ ?SETUP(fun () -> eqc_c:start(binary16, [
7
+ {c_src, "../binary16.c"},
8
+ {additional_files, "../binary16.h"}]),
9
fun() -> ok end
10
end,
11
equals(0, binary16:msb_ndx(0))).
0 commit comments