There are two plugin locations in a Pulse build:
./build/ocaml/installed/lib/pulse/pulse.cmxs
./out/lib/pulse/pulse.cmxs
(1) is created by make plugin and is used to build the library.
(2) is created by make and is used e.g. in the tests.
This leads to confusing situations where you've changed the pulse checker, it works just fine in the library, but you can't figure out why it doesn't work in the tests.
We should remove out. See also #508.
There are two plugin locations in a Pulse build:
./build/ocaml/installed/lib/pulse/pulse.cmxs./out/lib/pulse/pulse.cmxs(1) is created by
make pluginand is used to build the library.(2) is created by
makeand is used e.g. in the tests.This leads to confusing situations where you've changed the pulse checker, it works just fine in the library, but you can't figure out why it doesn't work in the tests.
We should remove
out. See also #508.