diff options
author | chriseth <chris@ethereum.org> | 2017-05-03 18:27:01 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-05-03 18:27:01 +0800 |
commit | bd6e891704ac32aafba5dbe7d6b48dc1436308ef (patch) | |
tree | 278acad8f26eacc13c2ae340e6620dd60069df8a /test/fuzzer.cpp | |
parent | b6c37dd912c47800f7151a37d26aac08f46e13bf (diff) | |
download | dexon-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/fuzzer.cpp')
-rw-r--r-- | test/fuzzer.cpp | 2 |
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")) |