test(sterni/blipqn): add sanity check
This tests that a single pixel is set in the correct place and correctly sent over UDP. Change-Id: I617dda739262b4c6cf55c0bf99d2f3e141adece3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/13013 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
This commit is contained in:
parent
10dc365e34
commit
a031b918b1
1 changed files with 16 additions and 0 deletions
|
|
@ -17,6 +17,22 @@ let
|
||||||
pkgs.cbqn
|
pkgs.cbqn
|
||||||
];
|
];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [
|
||||||
|
pkgs.netcat-openbsd
|
||||||
|
];
|
||||||
|
checkPhase = ''
|
||||||
|
runHook preCheck
|
||||||
|
nc -lu 2323 > raw &
|
||||||
|
BQN ./examples.bqn localhost 2323 32 10 235
|
||||||
|
kill %1
|
||||||
|
base64 raw > received
|
||||||
|
diff -u received - <<EOF
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||||
|
EOF
|
||||||
|
runHook postCheck
|
||||||
|
'';
|
||||||
|
|
||||||
meta.ci.targets = [ "debug" ];
|
meta.ci.targets = [ "debug" ];
|
||||||
passthru.debug = drv.overrideAttrs (old: {
|
passthru.debug = drv.overrideAttrs (old: {
|
||||||
CFLAGS = "-g -Werror -DFLIPDOT_DEBUG=1";
|
CFLAGS = "-g -Werror -DFLIPDOT_DEBUG=1";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue