File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,18 +111,18 @@ function test_file
111
111
112
112
if OUTPUT=$( " ${SOLC} " --ir " ${SOL_FILE} " 2>&1 ) ; then
113
113
SUCCESS+=(" ${SOL_FILE} " )
114
- show_output_if ${SHOW_SUCCESSFUL}
114
+ show_output_if " ${SHOW_SUCCESSFUL} "
115
115
else
116
116
FAILED+=(" ${SOL_FILE} " )
117
117
if [[ ${OUTPUT} == * " UnimplementedFeatureError" * ]]; then
118
118
UNIMPLEMENTED_FEATURE_ERRORS+=(" ${SOL_FILE} " )
119
- show_output_if ${SHOW_UNIMPLEMENTED_FEATURE_ERRORS}
119
+ show_output_if " ${SHOW_UNIMPLEMENTED_FEATURE_ERRORS} "
120
120
elif [[ ${OUTPUT} == * " InternalCompilerError" * ]]; then
121
121
INTERNAL_COMPILER_ERRORS+=(" ${SOL_FILE} " )
122
- show_output_if ${SHOW_INTERNAL_COMPILER_ERRORS}
122
+ show_output_if " ${SHOW_INTERNAL_COMPILER_ERRORS} "
123
123
else
124
124
OTHER_ERRORS+=(" ${SOL_FILE} " )
125
- show_output_if ${SHOW_OTHER_ERRORS}
125
+ show_output_if " ${SHOW_OTHER_ERRORS} "
126
126
fi
127
127
fi
128
128
}
You can’t perform that action at this time.
0 commit comments