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:
Marenz 2021-07-12 12:45:56 +02:00
parent c3fa520c75
commit 7836779975

View File

@ -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"