drop manticore for runlen, longer limit

This commit is contained in:
Alex Groce
2019-01-01 19:52:48 -07:00
parent cc2925ffd2
commit a6db7fb097
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ void printBytes(const char* bytes) {
}
// Can be (much) higher (e.g., > 1024) if we're using fuzzing, not symbolic execution
#define MAX_STR_LEN 3
#define MAX_STR_LEN 4
TEST(Runlength, EncodeDecode) {
char* original = DeepState_CStrUpToLen(MAX_STR_LEN);
+2
View File
@@ -5,6 +5,8 @@ import logrun
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
(r, output) = logrun.logrun([deepstate, "build/examples/Runlen"],
"deepstate.out", 2900)
self.assertEqual(r, 0)