diff options
author | chriseth <c@ethdev.com> | 2017-02-25 02:31:52 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2017-02-25 02:32:44 +0800 |
commit | 9acfdb80444e94c2fe8845f796f13f8dedc49b22 (patch) | |
tree | e7269647400d7705a2e3bb39406912b1dc49c35e /test | |
parent | 8877d4a7819a589d41b87e10237fa281e453a604 (diff) | |
download | dexon-solidity-9acfdb80444e94c2fe8845f796f13f8dedc49b22.tar.gz dexon-solidity-9acfdb80444e94c2fe8845f796f13f8dedc49b22.tar.zst dexon-solidity-9acfdb80444e94c2fe8845f796f13f8dedc49b22.zip |
Print full error on failure.
Diffstat (limited to 'test')
-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 f957d4ed..410313c5 100644 --- a/test/fuzzer.cpp +++ b/test/fuzzer.cpp @@ -77,7 +77,7 @@ int main() }); if (!invalid.empty()) { - cout << "Invalid error: \"" << invalid << "\"" << endl; + cout << "Invalid error: \"" << error.asString() << "\"" << endl; abort(); } } |