Artifact
baeb71488033e7899a4b2b5790730458d8f4ec4e:
- Executable file
Setup/run-mono-tests-release.sh
— part of check-in
[fa057c02da]
at
2016-10-29 23:58:17
on branch trunk
— When testing on Mono, make sure to set the build year as various tests may rely upon it.
(user:
mistachkin
size: 548)
[more...]
#!/bin/bash
scriptdir=`dirname "$BASH_SOURCE"`
if [[ "$OSTYPE" == "darwin"* ]]; then
libname=libSQLite.Interop.dylib
else
libname=libSQLite.Interop.so
fi
pushd "$scriptdir/.."
mono Externals/Eagle/bin/EagleShell.exe -preInitialize "set root_path {$scriptdir/..}; set test_configuration Release; set test_year 2013; set build_directory {bin/2013/Release/bin}; set interop_assembly_file_names $libname" -initialize -postInitialize "unset no(deleteSqliteImplicitNativeFiles); unset no(copySqliteImplicitNativeFiles)" -file Tests/all.eagle
popd