Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
scdaq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
scouting-demonstrator
scdaq
Merge requests
!6
Added simple test to the CI with one input file captured with passthrough for each of uGMT and DEMUX
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added simple test to the CI with one input file captured with passthrough for each of uGMT and DEMUX
feature_testRunInCI
into
master
Overview
14
Commits
34
Pipelines
4
Changes
6
All threads resolved!
Show all comments
Merged
Thomas Owen James
requested to merge
feature_testRunInCI
into
master
2 years ago
Overview
14
Commits
34
Pipelines
4
Changes
6
All threads resolved!
Show all comments
Expand
Based of
!5 (merged)
merging first
0
0
Merge request reports
Compare
master
version 3
c0f0e6fa
2 years ago
version 2
a6fcf750
2 years ago
version 1
fb0e74f4
2 years ago
master (base)
and
latest version
latest version
2b5b4989
34 commits,
2 years ago
version 3
c0f0e6fa
33 commits,
2 years ago
version 2
a6fcf750
32 commits,
2 years ago
version 1
fb0e74f4
31 commits,
2 years ago
6 files
+
32
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
scripts/runFileTest.sh
0 → 100755
+
15
−
0
Options
#!/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