Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@ language: python
python:
- 3.6.5
install:

- wget -O llvm-snapshot.gpg.key https://apt.llvm.org/llvm-snapshot.gpg.key
- sudo apt-key add llvm-snapshot.gpg.key
- sudo apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-6.0 main"
- sudo apt-get -y update
- sudo apt-get -y install build-essential gcc-multilib cmake python3-pip python3-setuptools libffi-dev python3-nose
- sudo apt-get -y install build-essential gcc-multilib clang-6.0 cmake python3-pip python3-setuptools libffi-dev python3-nose
- pip3 install pip
- pip3.6 -V
- pip3.6 install pyflakes
- pip3.6 install angr
- pip3.6 install https://github.com/trailofbits/manticore/archive/master.zip
- mkdir build
- cd build
- cmake ..
- CC=clang-6.0 CXX=clang++-6.0 cmake ..
- sudo make install
- cd ..
env:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

class ListsTest(deepstate_base.DeepStateTestCase):
def run_deepstate(self, deepstate):
if deepstate == "deepstate-manticore":
return # Just skip for now, we know it's too slow
#if deepstate == "deepstate-manticore":
# return # Just skip for now, we know it's too slow
(r, output) = logrun.logrun([deepstate, "build/examples/Lists"],
"deepstate.out", 3000)
self.assertEqual(r, 0)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_runlen.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

class RunlenTest(deepstate_base.DeepStateTestCase):
def run_deepstate(self, deepstate):
if deepstate == "deepstate-manticore":
return # Just skip for now, we know it's too slow
#if deepstate == "deepstate-manticore":
# return # Just skip for now, we know it's too slow
(r, output) = logrun.logrun([deepstate, "build/examples/Runlen"],
"deepstate.out", 2900)
self.assertEqual(r, 0)
Expand Down