diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-27 13:48:19 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-27 13:48:19 +0000 |
commit | 6fea73ceef5b867f483ba0ffa904c9164e361160 (patch) | |
tree | ed8e3d22ad0a0d1f73fcd04f01fae5d4853e25c3 /tests | |
parent | dd4ca8914344cb14ef6529a2637e156726f8847d (diff) | |
download | ffmpeg-6fea73ceef5b867f483ba0ffa904c9164e361160.tar.gz |
Do not hide the commands make runs.
Originally committed as revision 9136 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/Makefile b/tests/Makefile index 075af1ff33..aa0bb60b50 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -25,17 +25,17 @@ test-server: vsynth1/00.pgm asynth1.sw @echo "Unfortunately ffserver is broken and therefore its regression" @echo "test fails randomly. Treat the results accordingly." @echo - @$(SRC_DIR)/server-regression.sh $(SERVER_REFFILE) $(SRC_DIR)/test.conf + $(SRC_DIR)/server-regression.sh $(SERVER_REFFILE) $(SRC_DIR)/test.conf # fast regression tests for all codecs codectest mpeg4 mpeg ac3 snow snowll: vsynth1/00.pgm vsynth2/00.pgm asynth1.sw tiny_psnr$(EXESUF) - @$(SRC_DIR)/regression.sh $@ $(REFFILE1) vsynth1 - @$(SRC_DIR)/regression.sh $@ $(REFFILE2) vsynth2 + $(SRC_DIR)/regression.sh $@ $(REFFILE1) vsynth1 + $(SRC_DIR)/regression.sh $@ $(REFFILE2) vsynth2 # fast regression for libav formats ifeq ($(CONFIG_GPL),yes) libavtest: vsynth1/00.pgm asynth1.sw - @$(SRC_DIR)/regression.sh $@ $(LIBAV_REFFILE) vsynth1 + $(SRC_DIR)/regression.sh $@ $(LIBAV_REFFILE) vsynth1 else libavtest: @echo @@ -53,16 +53,16 @@ swscale_error: endif seektest: seek_test$(EXESUF) - @$(SRC_DIR)/seek_test.sh $(SEEK_REFFILE) + $(SRC_DIR)/seek_test.sh $(SEEK_REFFILE) # video generation vsynth1/00.pgm: videogen$(EXESUF) - @mkdir -p vsynth1 + mkdir -p vsynth1 $(BUILD_DIR)/$< 'vsynth1/' vsynth2/00.pgm: rotozoom$(EXESUF) - @mkdir -p vsynth2 + mkdir -p vsynth2 $(BUILD_DIR)/$< 'vsynth2/' $(SRC_DIR)/lena.pnm # audio generation |