remove test for replay

This commit is contained in:
Alex Groce 2018-08-04 13:01:16 -07:00
parent 4a8f7a3ccc
commit 462fcfb274

View File

@ -14,10 +14,5 @@ class CrashTest(deepstate_base.DeepStateTestCase):
for line in output.split("\n"):
if ("Saving input to" in line) and (".crash" in line):
foundCrashSave = True
crashLocation = line.split()[-1]
self.assertTrue(foundCrashSave)
(r, output) = logrun.logrun(["build/examples/Crash", "--input_test_file", crashLocation],
"deepstate.out", 30)
self.assertEqual(r, 0)
self.assertTrue("ERROR: Crashed: Crash_SegFault" in output)