summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaitao Huang <haitao.huang@intel.com>2012-07-11 16:42:45 +0800
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2012-07-27 15:36:39 +0200
commite20d5728a3b93a5cb6935994454c5b8dbe3cc022 (patch)
tree5dc9a0f043dc81f980087ac54129792d21eb8dd1
parent9129f6240319c8c684474692f10e9d8b06bbbe68 (diff)
downloadlibva-e20d5728a3b93a5cb6935994454c5b8dbe3cc022.tar.gz
test/basic: changed build target to noinst so they are built by default
Signed-off-by: Haitao Huang <haitao.huang@intel.com> (cherry picked from commit cc86031259117b3cd5607865858c9054cd44db0e)
-rw-r--r--test/basic/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/basic/Makefile.am b/test/basic/Makefile.am
index d13f8c9..68a6843 100644
--- a/test/basic/Makefile.am
+++ b/test/basic/Makefile.am
@@ -20,7 +20,7 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-check_PROGRAMS = test_01 test_02 test_03 test_04 test_05 test_06 \
+noinst_PROGRAMS = test_01 test_02 test_03 test_04 test_05 test_06 \
test_07 test_08 test_09 test_10 test_11
AM_CFLAGS = -I$(top_srcdir)/va -I$(top_srcdir)/src/x11
@@ -62,7 +62,7 @@ test_11_SOURCES = test_11.c
EXTRA_DIST = test_common.c
-valgrind: $(check_PROGRAMS)
- for a in $(check_PROGRAMS); do \
+valgrind: $(noinst_PROGRAMS)
+ for a in $(noinst_PROGRAMS); do \
valgrind --leak-check=full --show-reachable=yes .libs/$$a; \
done