diff options
author | herrBez <bez.mirko@gmail.com> | 2018-09-15 19:03:47 +0800 |
---|---|---|
committer | herrBez <bez.mirko@gmail.com> | 2018-09-21 05:02:44 +0800 |
commit | faa0caae084363f6809341ddb63f75d6c682b175 (patch) | |
tree | 179821780a96e1fa4393627ea8a706b0ff4c69ca /test/libsolidity/syntaxTests/multiline_comments.sol | |
parent | 2409986cf305c25d6a3d46c122521c7769dc7cd7 (diff) | |
download | dexon-solidity-faa0caae084363f6809341ddb63f75d6c682b175.tar.gz dexon-solidity-faa0caae084363f6809341ddb63f75d6c682b175.tar.zst dexon-solidity-faa0caae084363f6809341ddb63f75d6c682b175.zip |
Add syntax tests to augment the test coverage of
libsolidity/parsing/Scanner.cpp and libsolidity/parsing/Scanner.h
Fix #4627 and PR #5003.
- Add multiline comment test
- Add upper case hex literal test
- Add test for unicode escapes
- Add test for strings with escaped newlines
- Add test for string escapes
- Add test for strings that do not terminate before end of file
- Add test for unterminated blocks
Diffstat (limited to 'test/libsolidity/syntaxTests/multiline_comments.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/multiline_comments.sol | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/multiline_comments.sol b/test/libsolidity/syntaxTests/multiline_comments.sol new file mode 100644 index 00000000..480fde6c --- /dev/null +++ b/test/libsolidity/syntaxTests/multiline_comments.sol @@ -0,0 +1,13 @@ +/* + * This is a multi-line comment + * it should create no problems + * +*/ + +contract test { + /* + * this is another multi-line comment + * + */ +} +// ---- |