diff options
author | chriseth <chris@ethereum.org> | 2017-08-21 18:33:29 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-08-22 18:44:22 +0800 |
commit | 692e4c57e83607f21d0c1b1b735585b3b63564f3 (patch) | |
tree | 91d8ba9a3d9293282611505380f9040fb527ef1c /test/libjulia | |
parent | 97cb571ba49b81bd20b840e20f27c2cf55730d81 (diff) | |
download | dexon-solidity-692e4c57e83607f21d0c1b1b735585b3b63564f3.tar.gz dexon-solidity-692e4c57e83607f21d0c1b1b735585b3b63564f3.tar.zst dexon-solidity-692e4c57e83607f21d0c1b1b735585b3b63564f3.zip |
Check recursion depth in assembly parser.
Diffstat (limited to 'test/libjulia')
-rw-r--r-- | test/libjulia/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libjulia/Parser.cpp b/test/libjulia/Parser.cpp index bfe76461..51070370 100644 --- a/test/libjulia/Parser.cpp +++ b/test/libjulia/Parser.cpp @@ -246,7 +246,7 @@ BOOST_AUTO_TEST_CASE(recursion_depth) for (size_t i = 0; i < 20000; i++) input += "}"; - CHECK_ERROR(input, ParserError, "recursio"); + CHECK_ERROR(input, ParserError, "recursion"); } BOOST_AUTO_TEST_SUITE_END() |