mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
The automake manual says: "the contents of a non-empty AM_TESTS_ENVIRONMENT must be terminated by a semicolon." Without the semicolon, the perl command will indefinitely wait for input from stdin.
11 lines
328 B
Makefile
11 lines
328 B
Makefile
dist_check_SCRIPTS = test.pl
|
|
dist_check_DATA = testcase-44100.wav testcase-22050.wav
|
|
|
|
TESTS = $(dist_check_SCRIPTS)
|
|
TESTS_ENVIRONMENT = \
|
|
TWOLAME_CMD="$(top_builddir)/frontend/twolame" \
|
|
STWOLAME_CMD="$(top_builddir)/simplefrontend/stwolame" \
|
|
perl -w -Mstrict -MTest::Harness -e "runtests(@ARGV)";
|
|
|
|
CLEANFILES = *.mp2 *.raw
|