Skip to content

Granularity of checks

Marc Konig requested to merge granularity_of_checks into master

resolves #6 (closed) resolves #17 (closed)

Changed the way the CLI is used. There's now 2 categories of subcommands check and view that themselves accept subcommands, and this is easily expanded.

It works similar to git e.g. git add [file].

with fastpasta you can do e.g.

./fastpasta [input file] check sanity

or

lz4 -d ibq_daq.lz4 -c | ./fastpasta check all does sanity and running checks on RDH and payload

lz4 -d ibq_daq.lz4 -c | ./fastpasta check all rdh sanity and running checks on RDH

lz4 -d ibq_daq.lz4 -c | ./fastpasta check sanity sanity checks on RDH and payload

lz4 -d ibq_daq.lz4 -c | ./fastpasta check sanity rdh only for RDH

lz4 -d ibq_daq.lz4 -c | ./fastpasta check running sanity and running checks for RDH and payload (same as check all for now)

lz4 -d ibq_daq.lz4 -c | ./fastpasta check running rdh sanity and running checks for RDH and payload (same as check all rdh for now)

Edited by Marc Konig

Merge request reports