From 19636f748cd13d190432dac693590cd9d0b6302b Mon Sep 17 00:00:00 2001 From: Benedikt Radtke Date: Tue, 28 May 2024 02:24:43 +0200 Subject: Unicornafl: Fix incorrect comment (#2103) --- unicorn_mode/samples/python_simple/simple_test_harness.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unicorn_mode/samples/python_simple/simple_test_harness.py b/unicorn_mode/samples/python_simple/simple_test_harness.py index 8758192e..e32cdf81 100644 --- a/unicorn_mode/samples/python_simple/simple_test_harness.py +++ b/unicorn_mode/samples/python_simple/simple_test_harness.py @@ -119,7 +119,7 @@ def main(): binary_code = binary_file.read() binary_file.close() - # Apply constraints to the mutated input + # Assert that the binary size is within limits if len(binary_code) > CODE_SIZE_MAX: print("Binary code is too large (> {} bytes)".format(CODE_SIZE_MAX)) return -- cgit 1.4.1