Merge pull request #11644 from ethereum/fix-no-text-rep-found

Fix test error "No text representation found."
This commit is contained in:
Kamil Śliwak
2021-07-12 14:47:16 +02:00
committed by GitHub
+3 -1
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"