mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
scripts/ImportExportTest.sh: Fix "${OUTPUT[*]}".
This commit is contained in:
parent
b56121fb3b
commit
b174aba0df
@ -219,7 +219,7 @@ do
|
|||||||
then
|
then
|
||||||
IFS=' ' read -ra OUTPUT_ARRAY <<< "${OUTPUT}"
|
IFS=' ' read -ra OUTPUT_ARRAY <<< "${OUTPUT}"
|
||||||
NSOURCES=$((NSOURCES - 1 + ${#OUTPUT_ARRAY[@]}))
|
NSOURCES=$((NSOURCES - 1 + ${#OUTPUT_ARRAY[@]}))
|
||||||
testImportExportEquivalence "$solfile" "${OUTPUT_ARRAY[@]}"
|
testImportExportEquivalence "$solfile" "${OUTPUT_ARRAY[*]}"
|
||||||
elif [ ${SPLITSOURCES_RC} == 1 ]
|
elif [ ${SPLITSOURCES_RC} == 1 ]
|
||||||
then
|
then
|
||||||
testImportExportEquivalence "$solfile" "$solfile"
|
testImportExportEquivalence "$solfile" "$solfile"
|
||||||
|
Loading…
Reference in New Issue
Block a user