diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-07 17:34:23 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-07 17:34:23 +0100 |
| commit | 9583dcc3d7b84e77a8a4d658c737ccba2a250373 (patch) | |
| tree | ad43ea109ee094eee2ec86396375245e5318f48e /assets | |
| parent | 652f3dbdb618513649dd672042a945de5e1cf319 (diff) | |
test: Add Gantt chart output test for seq_compiler
- Created test_gantt.seq: minimal sequence file for testing
- Created test_gantt_output.sh: bash script that verifies Gantt output
- Checks for: timeline header, BPM info, time axis, sequence bars
- Added GanttOutputTest to CMake test suite
All 29 tests pass (was 28).
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/test_gantt.seq | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/assets/test_gantt.seq b/assets/test_gantt.seq new file mode 100644 index 0000000..92f9cfc --- /dev/null +++ b/assets/test_gantt.seq @@ -0,0 +1,11 @@ +# Test sequence file for Gantt chart testing +# BPM 120 + +# Simple timeline with two sequences +SEQUENCE 0.0 0 "Sequence A" + EFFECT + FlashEffect 0.0 2.0 + +SEQUENCE 1.0 0 "Sequence B" + EFFECT + PassthroughEffect 0.0 2.0 + +END_DEMO 4.0 |
