Skip to content

Commit 7836779

Browse files
committed
Fix test error "No text representation found."
The result is actually okay as the code in question is never called.
1 parent c3fa520 commit 7836779

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/common_cmdline.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ function compileFull()
6464
local exit_code=$?
6565
local errors; errors=$(grep -v -E \
6666
-e 'Warning: This is a pre-release compiler version|Warning: Experimental features are turned on|pragma experimental ABIEncoderV2|^ +--> |^ +\||^[0-9]+ +\| ' \
67-
-e 'Warning: Yul is still experimental. Please use the output with care.' < "$stderr_path")
67+
-e 'Warning: Yul is still experimental. Please use the output with care.' \
68+
-e '^No text representation found.$' < "$stderr_path"
69+
)
6870

6971
set -e
7072
rm "$stderr_path"

0 commit comments

Comments
 (0)