Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make it easier to run the test suite under Mono on POSIX. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9d0328d15e0bce1f369a89bda6d1696d |
User & Date: | mistachkin 2016-09-16 03:13:17.584 |
Context
2016-09-20
| ||
22:41 | Fix typo in the version history docs. check-in: b8700ea335 user: mistachkin tags: trunk | |
2016-09-16
| ||
03:13 | Make it easier to run the test suite under Mono on POSIX. check-in: 9d0328d15e user: mistachkin tags: trunk | |
2016-09-15
| ||
02:02 | Final updates for release 1.0.103.0. check-in: 3f01740d6e user: mistachkin tags: trunk, release, release-1.0.103.0 | |
Changes
Changes to Setup/run-mono-tests-debug.sh.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ "$OSTYPE" == "darwin"* ]]; then libname=libSQLite.Interop.dylib else libname=libSQLite.Interop.so fi pushd "$scriptdir/.." | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/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 Debug; set build_directory {bin/2013/Debug/bin}; set interop_assembly_file_names $libname" -initialize -postInitialize "unset no(deleteSqliteImplicitNativeFiles); unset no(copySqliteImplicitNativeFiles)" -file Tests/all.eagle popd |
Changes to Setup/run-mono-tests-release.sh.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ "$OSTYPE" == "darwin"* ]]; then libname=libSQLite.Interop.dylib else libname=libSQLite.Interop.so fi pushd "$scriptdir/.." | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/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 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 |