File: sub.mk

package info (click to toggle)
bart 0.9.00-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,040 kB
  • sloc: ansic: 116,116; python: 1,329; sh: 726; makefile: 639; javascript: 589; cpp: 106
file content (10 lines) | stat: -rw-r--r-- 360 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
tests/test-sub: ones scale sub nrmse bart # bart is called by sub
	set -e; mkdir $(TESTS_TMP) ; cd $(TESTS_TMP) 	;\
	$(TOOLDIR)/ones 1 128 o.ra                	;\
	$(TOOLDIR)/scale 2. o.ra t.ra                	;\
	$(TOOLDIR)/sub o.ra t.ra d.ra			;\
	$(TOOLDIR)/nrmse -t 0. o.ra d.ra		;\
	rm *.ra ; cd .. ; rmdir $(TESTS_TMP)
	touch $@

TESTS += tests/test-sub