File: make-shuffle.patch

package info (click to toggle)
crac 2.5.2%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,012 kB
  • sloc: cpp: 41,838; sh: 391; makefile: 373
file content (21 lines) | stat: -rw-r--r-- 715 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: index_genomes.sh needs to run first for other tests to find index files
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2025-11-01
--- a/test_f/Makefile.am
+++ b/test_f/Makefile.am
@@ -106,6 +106,10 @@
 
 script_tests = index_genomes.sh launch_sg.sh test_index.sh
 
+# Add dep on tests
+launch_sg.sh: index_genomes.sh.log
+test_index.sh: index_genomes.sh.log
+
 should_get_files = $(shell find . -name "*.should_get")
 fasta_files = $(shell find . -name "*.fasta" -o -name "*.fa")
 fastq_files = $(shell find . -name "*.fastq" -o -name "*.fq")
@@ -116,3 +120,4 @@
 CLEANFILES = *~ *.tap *.gcda *.gcno *.valgrind
 DISTCLEANFILES = *~
 MAINTAINERCLEANFILES = *~
+.PHONY: launch_sg.sh test_index.sh