mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix test error "No text representation found."
The result is actually okay as the code in question is never called.
This commit is contained in:
parent
c3fa520c75
commit
7836779975
@ -64,7 +64,9 @@ function compileFull()
|
||||
local exit_code=$?
|
||||
local errors; errors=$(grep -v -E \
|
||||
-e 'Warning: This is a pre-release compiler version|Warning: Experimental features are turned on|pragma experimental ABIEncoderV2|^ +--> |^ +\||^[0-9]+ +\| ' \
|
||||
-e 'Warning: Yul is still experimental. Please use the output with care.' < "$stderr_path")
|
||||
-e 'Warning: Yul is still experimental. Please use the output with care.' \
|
||||
-e '^No text representation found.$' < "$stderr_path"
|
||||
)
|
||||
|
||||
set -e
|
||||
rm "$stderr_path"
|
||||
|
Loading…
Reference in New Issue
Block a user