aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-03 18:27:01 +0800
committerchriseth <chris@ethereum.org>2017-05-03 18:27:01 +0800
commitbd6e891704ac32aafba5dbe7d6b48dc1436308ef (patch)
tree278acad8f26eacc13c2ae340e6620dd60069df8a /test
parentb6c37dd912c47800f7151a37d26aac08f46e13bf (diff)
downloaddexon-solidity-bd6e891704ac32aafba5dbe7d6b48dc1436308ef.tar
dexon-solidity-bd6e891704ac32aafba5dbe7d6b48dc1436308ef.tar.gz
dexon-solidity-bd6e891704ac32aafba5dbe7d6b48dc1436308ef.tar.bz2
dexon-solidity-bd6e891704ac32aafba5dbe7d6b48dc1436308ef.tar.lz
dexon-solidity-bd6e891704ac32aafba5dbe7d6b48dc1436308ef.tar.xz
dexon-solidity-bd6e891704ac32aafba5dbe7d6b48dc1436308ef.tar.zst
dexon-solidity-bd6e891704ac32aafba5dbe7d6b48dc1436308ef.zip
Fix return value in the fuzzer.
Diffstat (limited to 'test')
-rw-r--r--test/fuzzer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzzer.cpp b/test/fuzzer.cpp
index afa50671..053d880f 100644
--- a/test/fuzzer.cpp
+++ b/test/fuzzer.cpp
@@ -205,7 +205,7 @@ Allowed options)",
catch (po::error const& _exception)
{
cerr << _exception.what() << endl;
- return false;
+ return 1;
}
if (arguments.count("quiet"))