• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/libva


Commit MetaInfo

Revisioncc86031259117b3cd5607865858c9054cd44db0e (tree)
Time2012-07-11 17:43:35
AuthorHaitao Huang <haitao.huang@inte...>
CommiterXiang, Haihao

Log Message

test/basic: changed build target to noinst so they are built by default

Signed-off-by: Haitao Huang <haitao.huang@intel.com>

Change Summary

Incremental Difference

--- a/test/basic/Makefile.am
+++ b/test/basic/Makefile.am
@@ -20,7 +20,7 @@
2020 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2121 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
23-check_PROGRAMS = test_01 test_02 test_03 test_04 test_05 test_06 \
23+noinst_PROGRAMS = test_01 test_02 test_03 test_04 test_05 test_06 \
2424 test_07 test_08 test_09 test_10 test_11
2525
2626 AM_CFLAGS = -I$(top_srcdir)/va -I$(top_srcdir)/src/x11
@@ -62,7 +62,7 @@ test_11_SOURCES = test_11.c
6262
6363 EXTRA_DIST = test_common.c
6464
65-valgrind: $(check_PROGRAMS)
66- for a in $(check_PROGRAMS); do \
65+valgrind: $(noinst_PROGRAMS)
66+ for a in $(noinst_PROGRAMS); do \
6767 valgrind --leak-check=full --show-reachable=yes .libs/$$a; \
6868 done