Sha256: 61caebdeb59ab5fb7352f7e7a738bd03216128195b4da3eee81105e349288480

Contents?: true

Size: 511 Bytes

Versions: 8

Compression:

Stored size: 511 Bytes

Contents

#!/usr/bin/env bash

if [[ -z $CLANG_FORMAT ]] ; then
    CLANG_FORMAT=clang-format
fi

if NOT type $CLANG_FORMAT 2> /dev/null ; then
    echo "No appropriate clang-format found."
    exit 1
fi

FAIL=0
SOURCE_FILES=`find bin source include tests -type f \( -name '*.h' -o -name '*.c' \)`
for i in $SOURCE_FILES
do
    $CLANG_FORMAT -output-replacements-xml $i | grep -c "<replacement " > /dev/null
    if [ $? -ne 1 ]
    then
        echo "$i failed clang-format check."
        FAIL=1
    fi
done

exit $FAIL

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aws-crt-0.1.8 aws-crt-ffi/crt/aws-c-cal/format-check.sh
aws-crt-0.1.7 aws-crt-ffi/crt/aws-c-cal/format-check.sh
aws-crt-0.1.6 aws-crt-ffi/crt/aws-c-cal/format-check.sh
aws-crt-0.1.5 aws-crt-ffi/crt/aws-c-cal/format-check.sh
aws-crt-0.1.4 aws-crt-ffi/crt/aws-c-cal/format-check.sh
aws-crt-0.1.2 aws-crt-ffi/crt/aws-c-cal/format-check.sh
aws-crt-0.1.1.pre native/crt/aws-c-cal/format-check.sh
aws-crt-0.1.0.pre native/crt/aws-c-cal/format-check.sh