Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Break test 'data-1.3' into two, one for the .NET Framework 4.x and one for .NET Standard 2.1. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard21 |
Files: | files | file ages | folders |
SHA1: |
2b6e69647e79712a959f3bdbbf49a7d0 |
User & Date: | mistachkin 2019-10-09 00:32:08.150 |
Context
2019-10-09
| ||
01:07 | Add missing calls to 'info previouspid true' to the test suite. check-in: c7c7f4032f user: mistachkin tags: netStandard21 | |
00:32 | Break test 'data-1.3' into two, one for the .NET Framework 4.x and one for .NET Standard 2.1. check-in: 2b6e69647e user: mistachkin tags: netStandard21 | |
2019-10-08
| ||
23:59 | More build system updates for .NET Standard 2.1. check-in: 1f451718a6 user: mistachkin tags: netStandard21 | |
Changes
Changes to Tests/basic.eagle.
︙ | ︙ | |||
93 94 95 96 97 98 99 | } -constraints \ {eagle command.object monoToDo SQLite file_System.Data.SQLite.dll\ file_System.Data.SQLite.Linq.dll file_testlinq.exe file_northwindEF.db\ file_testlinq.out testExec !dotNetCore} -result {0 True {}}} ############################################################################### | | | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | } -constraints \ {eagle command.object monoToDo SQLite file_System.Data.SQLite.dll\ file_System.Data.SQLite.Linq.dll file_testlinq.exe file_northwindEF.db\ file_testlinq.out testExec !dotNetCore} -result {0 True {}}} ############################################################################### runTest {test data-1.3.1 {unit tests from the 'testef6' project} -setup { copySampleDatabaseFiles # # NOTE: We need to make 100% sure that the console output encoding is the # same as when the 'testlinq.out' file was created. # set savedEncoding [object invoke Console OutputEncoding] |
︙ | ︙ | |||
121 122 123 124 125 126 127 128 129 130 131 | tlog "\n---- END STDOUT OUTPUT\n" list $code [string equal $output [readFile $testLinqOutFile]] \ [expr {$code == 0 ? "" : $error}] } -cleanup { catch {object invoke Console OutputEncoding $savedEncoding} unset -nocomplain code output error savedEncoding encoding } -constraints \ {eagle command.object monoToDo SQLite file_EntityFramework.dll\ file_System.Data.SQLite.dll file_System.Data.SQLite.EF6.dll file_testef6.exe\ | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | tlog "\n---- END STDOUT OUTPUT\n" list $code [string equal $output [readFile $testLinqOutFile]] \ [expr {$code == 0 ? "" : $error}] } -cleanup { catch {object invoke Console OutputEncoding $savedEncoding} unset -nocomplain code output error savedEncoding encoding } -constraints [fixConstraints \ {eagle command.object monoToDo SQLite file_EntityFramework.dll\ file_System.Data.SQLite.dll file_System.Data.SQLite.EF6.dll file_testef6.exe\ file_northwindEF.db file_testlinq.out testExec !dotNetCore}] -result {0 True\ {}}} ############################################################################### runTest {test data-1.3.2 {unit tests from the 'testef6' project} -setup { copySampleDatabaseFiles # # NOTE: We need to make 100% sure that the console output encoding is the # same as when the 'testlinq.out' file was created. # set savedEncoding [object invoke Console OutputEncoding] set encoding [object invoke System.Text.Encoding GetEncoding iso-8859-1] object invoke Console OutputEncoding $encoding } -body { set output "" set code [catch { testClrExec $testEf6ExeFile [list -eventflags Wait -directory \ [file dirname $testEf6ExeFile] -stdout output -success Success] } error] tlog "---- BEGIN STDOUT OUTPUT\n" tlog $output tlog "\n---- END STDOUT OUTPUT\n" list $code [string equal $output [readFile $testLinqOutFile]] \ [expr {$code == 0 ? "" : $error}] } -cleanup { catch {object invoke Console OutputEncoding $savedEncoding} unset -nocomplain code output error savedEncoding encoding } -constraints \ {eagle command.object monoToDo SQLite file_EntityFramework.dll\ file_System.Data.SQLite.dll file_System.Data.SQLite.EF6.dll file_testef6.exe\ file_northwindEF.db file_testlinq.out testExec dotNetCore} -result {0 True {}}} ############################################################################### runTest {test data-1.4 {SELECT scalar/reader, CREATE, INSERT} -setup { setupDb [set fileName data-1.4.db] } -body { set result [list] |
︙ | ︙ |