Merge pull request #8304 from ethereum/fix-macos-ast-test

Fix AST JSON test on MacOS
This commit is contained in:
chriseth 2020-02-14 14:03:59 +01:00 committed by GitHub
commit 7115f6fe41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ for solfile in $(find $SYNTAXTESTS_DIR -name *.sol)
do do
echo -n "." echo -n "."
# create a temporary sub-directory # create a temporary sub-directory
FILETMP=$(mktemp -d -p $WORKINGDIR) FILETMP=$(mktemp -d)
cd $FILETMP cd $FILETMP
OUTPUT=$($SPLITSOURCES $solfile) OUTPUT=$($SPLITSOURCES $solfile)