Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improve cross-platform detection and use of the SQLite interop assembly / SQLite native library by the test suite infrastructure. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
337076bac11643f8eb7461ab26cfd15b |
User & Date: | mistachkin 2018-07-23 05:52:06.912 |
Context
2018-07-23
| ||
06:19 | Enhancements to POSIX build scripts. check-in: 95766a2582 user: mistachkin tags: trunk | |
05:52 | Improve cross-platform detection and use of the SQLite interop assembly / SQLite native library by the test suite infrastructure. check-in: 337076bac1 user: mistachkin tags: trunk | |
05:39 | Fix typo in the vendor configuration file for the test suite. check-in: 8b8890b4fe user: mistachkin tags: trunk | |
Changes
Changes to Setup/run-mono-tests-debug.sh.
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 | - - - - - - - + | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` |
Changes to Setup/run-mono-tests-release.sh.
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 | - - - - - - - + | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` |
Changes to Setup/run-netstandard20-tests-debug.sh.
︙ | |||
15 16 17 18 19 20 21 22 23 | 15 16 17 18 19 20 21 22 23 24 25 26 27 | + - - - + | pushd "$scriptdir/.." SQLITE_INTEROP_DIR=bin/$SQLITE_NET_YEAR/Debug$SQLITE_NET_CONFIGURATION_SUFFIX/bin SQLITE_INTEROP_FILE=$SQLITE_INTEROP_DIR/$libname if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi |
Changes to Setup/run-netstandard20-tests-release.sh.
︙ | |||
15 16 17 18 19 20 21 22 23 | 15 16 17 18 19 20 21 22 23 24 25 26 27 | + - - - + | pushd "$scriptdir/.." SQLITE_INTEROP_DIR=bin/$SQLITE_NET_YEAR/Release$SQLITE_NET_CONFIGURATION_SUFFIX/bin SQLITE_INTEROP_FILE=$SQLITE_INTEROP_DIR/$libname if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi |
Changes to lib/System.Data.SQLite/common.eagle.
︙ | |||
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 | 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 | + + + + + + - - + + + + + + + + + + + + + + + + - - + + - - + - - + + + + + + + + + + + + + + + + - - + + - - + | # # NOTE: If the test suite cannot use [exec] or execution of CorFlags # failed, return false. # return false } proc isDarwin {} { return [expr { [info exists ::tcl_platform(os)] && $::tcl_platform(os) eq "Darwin" }] } proc getNativeLibraryFileNamesOnly {} { # # NOTE: First, check if the list of native library file names has been # manually overridden. # if {[info exists ::native_library_file_names] && \ [llength $::native_library_file_names] > 0} then { # # NOTE: The list of native library file names has been overridden; # therefore, use it verbatim. # return $::native_library_file_names } elseif {[isWindows]} then { # |
︙ |