mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Add --only-free and --help options to test scripts (#1161)
This commit is contained in:
@@ -1,10 +1,45 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
case "$1" in
|
usage() {
|
||||||
|
echo "Downloads source code of Game Boy programs used as RGBDS test cases."
|
||||||
|
echo "Options:"
|
||||||
|
echo " -h, --help show this help message"
|
||||||
|
echo " --only-free download only freely licensed codebases"
|
||||||
|
echo " --get-hash print programs' commit hashes instead of downloading them"
|
||||||
|
echo " --get-paths print programs' GitHub paths instead of downloading them"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Parse options in pure Bash because macOS `getopt` is stuck
|
||||||
|
# in what util-linux `getopt` calls `GETOPT_COMPATIBLE` mode
|
||||||
|
nonfree=true
|
||||||
|
actionname=
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
case "$1" in
|
||||||
|
-h|--help)
|
||||||
|
usage
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
--only-free)
|
||||||
|
nonfree=false
|
||||||
|
;;
|
||||||
|
--get-hash|--get-paths)
|
||||||
|
actionname="$1"
|
||||||
|
;;
|
||||||
|
--)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "$(basename $0): unknown option "$1""
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
case "$actionname" in
|
||||||
--get-hash)
|
--get-hash)
|
||||||
action() { # owner/repo shallow-since commit
|
action() { # owner/repo shallow-since commit
|
||||||
printf "%s@%s-" "${1##*/}" "$3"
|
printf "%s@%s-" "${1##*/}" "$3"
|
||||||
@@ -33,6 +68,8 @@ case "$1" in
|
|||||||
}
|
}
|
||||||
esac
|
esac
|
||||||
|
|
||||||
action pret/pokecrystal 2022-09-29 70a3ec1accb6de1c1c273470af0ddfa2edc1b0a9
|
if "$nonfree"; then
|
||||||
action pret/pokered 2022-09-29 2b52ceb718b55dce038db24d177715ae4281d065
|
action pret/pokecrystal 2022-09-29 70a3ec1accb6de1c1c273470af0ddfa2edc1b0a9
|
||||||
action AntonioND/ucity 2022-04-20 d8878233da7a6569f09f87b144cb5bf140146a0f
|
action pret/pokered 2022-09-29 2b52ceb718b55dce038db24d177715ae4281d065
|
||||||
|
fi
|
||||||
|
action AntonioND/ucity 2022-04-20 d8878233da7a6569f09f87b144cb5bf140146a0f
|
||||||
|
|||||||
@@ -1,11 +1,40 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Return failure as soon as a command fails to execute
|
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "Runs regression tests on RGBDS."
|
||||||
|
echo "Options:"
|
||||||
|
echo " -h, --help show this help message"
|
||||||
|
echo " --only-free skip tests that build nonfree codebases"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Parse options in pure Bash because macOS `getopt` is stuck
|
||||||
|
# in what util-linux `getopt` calls `GETOPT_COMPATIBLE` mode
|
||||||
|
nonfree=true
|
||||||
|
FETCH_TEST_DEPS="fetch-test-deps.sh"
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
case "$1" in
|
||||||
|
-h|--help)
|
||||||
|
usage
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
--only-free)
|
||||||
|
nonfree=false
|
||||||
|
FETCH_TEST_DEPS="fetch-test-deps.sh --only-free"
|
||||||
|
;;
|
||||||
|
--)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "$(basename $0): internal error"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
# Refuse to run if RGBDS isn't present
|
# Refuse to run if RGBDS isn't present
|
||||||
if [[ ! ( -x ../rgbasm && -x ../rgblink && -x ../rgbfix && -x ../rgbgfx ) ]]; then
|
if [[ ! ( -x ../rgbasm && -x ../rgblink && -x ../rgbfix && -x ../rgbgfx ) ]]; then
|
||||||
echo "Please build RGBDS before running the tests"
|
echo "Please build RGBDS before running the tests"
|
||||||
@@ -27,7 +56,7 @@ done
|
|||||||
|
|
||||||
test_downstream() { # owner/repo make-target
|
test_downstream() { # owner/repo make-target
|
||||||
if ! pushd ${1##*/}; then
|
if ! pushd ${1##*/}; then
|
||||||
echo >&2 'Please run `fetch-test-deps.sh` before running the test suite'
|
echo >&2 'Please run `'"$FETCH_TEST_DEPS"'` before running the test suite'
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
make clean
|
make clean
|
||||||
@@ -35,6 +64,8 @@ test_downstream() { # owner/repo make-target
|
|||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
test_downstream pret/pokecrystal compare
|
if "$nonfree"; then
|
||||||
test_downstream pret/pokered compare
|
test_downstream pret/pokecrystal compare
|
||||||
|
test_downstream pret/pokered compare
|
||||||
|
fi
|
||||||
test_downstream AntonioND/ucity ''
|
test_downstream AntonioND/ucity ''
|
||||||
|
|||||||
Reference in New Issue
Block a user