Artifact ab652a3e0b7e32f0a993325e1bcdf76fa2aa7f1b:
- Executable file Setup/run-mono-tests-release.sh — part of check-in [3cd1215470] at 2024-10-01 18:41:10 on branch trunk — Improvements to robustness of the POSIX build scripts. (user: mistachkin size: 412)
#!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=2013 fi pushd "$scriptdir/.." || exit 1 mono Externals/Eagle/bin/netFramework40/EagleShell.exe -preInitialize "set test_configuration Release; set test_year {$SQLITE_NET_YEAR}; set build_directory {bin/$SQLITE_NET_YEAR/Release$SQLITE_NET_CONFIGURATION_SUFFIX/bin}" -file Tests/all.eagle "$@" popd || exit 1