diff --git a/scripts/bytecodecompare/storebytecode.sh b/scripts/bytecodecompare/storebytecode.sh index 3574fe6bf..2192960e4 100755 --- a/scripts/bytecodecompare/storebytecode.sh +++ b/scripts/bytecodecompare/storebytecode.sh @@ -1,10 +1,12 @@ #!/usr/bin/env bash #------------------------------------------------------------------------------ -# Script used for cross-platform comparison as part of the travis automation. -# Splits all test source code into multiple files, generates bytecode and -# uploads the bytecode into github.com/ethereum/solidity-test-bytecode where -# another travis job is triggered to do the actual comparison. +# Script used for cross-platform comparison of the bytecode generated by the compiler. +# Splits all test source code into multiple files, generates bytecode and metadata +# for each file and combines it into a single report.txt file. +# +# The script is meant to be executed in CI on all supported platforms. All generated +# reports must be identical for a given compiler version. # # ------------------------------------------------------------------------------ # This file is part of solidity.