Skip to content

Commit

Permalink
Mark CMU Bomb test case as slow.
Browse files Browse the repository at this point in the history
So it won't cause timeouts on Travis CI.
  • Loading branch information
ltfish committed Aug 28, 2017
1 parent e64263d commit e2096e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# pylint: disable=exec-used
import os
import sys
import claripy
import itertools
import traceback

from nose.plugins.attrib import attr

import claripy

def _path(d):
return os.path.join(os.path.dirname(__file__), d)

Expand Down Expand Up @@ -81,6 +84,7 @@ def test_ais3_crackme(): exampletest_single('ais3_crackme')
def test_asisctffinals2015_fake(): exampletest_single('asisctffinals2015_fake')
def test_asisctffinals2015_license(): exampletest_single('asisctffinals2015_license')
def test_CADET_00001(): exampletest_single('CADET_00001')
@attr(speed='slow')
def test_cmu_binary_bomb(): exampletest_single('cmu_binary_bomb')
#def test_csaw_wyvern(): exampletest_single('csaw_wyvern')
def test_defcamp_r100(): exampletest_single('defcamp_r100')
Expand Down

0 comments on commit e2096e0

Please sign in to comment.