diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-07-02 17:16:18 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-06 15:36:57 +0200 |
commit | 6516632967da5e6bd7d6136e8678f826669ed26e (patch) | |
tree | 3d98258702e0133a76d66aa6e565f7e4855fed78 /libavformat/Makefile | |
parent | 73142e753381519de645a56e7d6994c77a3fd27f (diff) | |
download | ffmpeg-6516632967da5e6bd7d6136e8678f826669ed26e.tar.gz |
tests: Only run noproxy test if networking is enabled
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 24b303e345..9d002a8e7f 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -383,11 +383,12 @@ SKIPHEADERS-$(CONFIG_NETWORK) += network.h rtsp.h EXAMPLES = metadata \ output \ -TESTPROGS = noproxy \ - seek \ +TESTPROGS = seek \ srtp \ url \ +TESTPROGS-$(CONFIG_NETWORK) += noproxy + TOOLS = aviocat \ ismindex \ pktdumper \ |