33 lines
974 B
Bash
Executable File
33 lines
974 B
Bash
Executable File
#!/bin/bash
|
|
##===----------------------------------------------------------------------===##
|
|
##
|
|
## This source file is part of the Swift Baggage Context open source project
|
|
##
|
|
## Copyright (c) 2020 Moritz Lang and the Swift Baggage Context project authors
|
|
## Licensed under Apache License v2.0
|
|
##
|
|
## See LICENSE.txt for license information
|
|
##
|
|
## SPDX-License-Identifier: Apache-2.0
|
|
##
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
set -eu
|
|
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
printf "=> Checking linux tests... "
|
|
FIRST_OUT="$(git status --porcelain)"
|
|
ruby "$here/../scripts/generate_linux_tests.rb" > /dev/null
|
|
SECOND_OUT="$(git status --porcelain)"
|
|
if [[ "$FIRST_OUT" != "$SECOND_OUT" ]]; then
|
|
printf "\033[0;31mmissing changes!\033[0m\n"
|
|
git --no-pager diff
|
|
exit 1
|
|
else
|
|
printf "\033[0;32mokay.\033[0m\n"
|
|
fi
|
|
|
|
bash $here/validate_license_headers.sh
|
|
bash $here/validate_format.sh
|
|
bash $here/validate_naming.sh
|