beremiz

a811e1ff718a
file isExecutable
Tests: Add time emulation feature for tests with BEREMIZ_TEST_CYCLES CFLAG.

Adding BEREMIZ_TEST_CYCLES=1000 in a project's CFLAGS will:
- run 1000 cycles with no pause
- emulate time flowing normaly for PLC code
- exit PLC thread

This allows:
- testing standard library blocks that deal with time without having to wait
- unit testing and code coverage with POUs that uses time
#!/bin/bash
CONTAINER=beremiz_sikuli_current
docker start $CONTAINER
docker exec -i -t -u root $CONTAINER bash
docker stop $CONTAINER