Merge pull request #594 from pranith/travis

Fix library install for tests
test2
Nguyen Anh Quynh 9 years ago
commit 271ea776a6
  1. 2
      .travis.yml
  2. 2
      Makefile
  3. 2
      README.md

@ -1,7 +1,7 @@
language: cpp
sudo: false
before_install:
- export LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH=`pwd`/tests/:$LD_LIBRARY_PATH
script:
- ./make.sh
- make check

@ -361,7 +361,7 @@ else
cd tests && $(MAKE) BUILDDIR=$(BLDIR)
endif
ifeq ($(CAPSTONE_SHARED),yes)
$(INSTALL_DATA) $(LIBRARY) $(BLDIR)/tests/
$(INSTALL_DATA) $(LIBRARY) $(BLDIR)/tests/lib$(LIBNAME).$(VERSION_EXT)
endif
endif

@ -1,4 +1,4 @@
Capstone [![Build Status](https://travis-ci.org/aquynh/capstone.svg?branch=master)](https://travis-ci.org/aquynh/capstone)
Capstone [![Build Status](https://travis-ci.org/aquynh/capstone.svg?branch=next)](https://travis-ci.org/aquynh/capstone)
Capstone is a disassembly framework with the target of becoming the ultimate
disasm engine for binary analysis and reversing in the security community.

Loading…
Cancel
Save