Skip to content
Snippets Groups Projects

Added simple test to the CI with one input file captured with passthrough for each of uGMT and DEMUX

Merged Thomas Owen James requested to merge feature_testRunInCI into master
All threads resolved!
Files
6
+ 15
0
#!/bin/sh
echo "building scdaq locally"
cd src
make all
cd -
echo "building scdaq locally"
cd test/data
tar -xzvf calo_testfile.tar.gz
tar -xzvf gmt_testfile.tar.gz
cd ../../
echo "Starting scdaq test with GMT P5 capture file: check for crash"
timeout 20s src/scdaq --config test/config/scdaq-gmt.conf | uniq
echo "Starting scdaq test with CALO P5 capture file: check for crash"
timeout 100s src/scdaq --config test/config/scdaq-calo.conf | uniq
echo "test run finished"
Loading