Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Modify legacy threading test case to allow threads more time to exit voluntarily, per ticket [f6bc37ac6b]. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
19c57cab6f0dd62d749a3bc940d3db76 |
User & Date: | mistachkin 2012-12-13 01:08:28.531 |
Context
2012-12-13
| ||
01:10 | Enhance tests for connection passwords that contain spaces, per ticket [b4cc611998]. check-in: 1b95978544 user: mistachkin tags: trunk | |
01:08 | Modify legacy threading test case to allow threads more time to exit voluntarily, per ticket [f6bc37ac6b]. check-in: 19c57cab6f user: mistachkin tags: trunk | |
01:06 | Update SQLite core library to the 3.7.15 release. check-in: 900e514d6a user: mistachkin tags: trunk | |
Changes
Changes to test/TestCases.cs.
︙ | ︙ | |||
1361 1362 1363 1364 1365 1366 1367 | System.Threading.WaitHandle.WaitAll(events, ThreadTimeout); bool failed = false; Exception e = null; for (int n = 0; n < arr.Length; n++) { | | | 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 | System.Threading.WaitHandle.WaitAll(events, ThreadTimeout); bool failed = false; Exception e = null; for (int n = 0; n < arr.Length; n++) { if (!arr[n].t.Join(ThreadTimeout / arr.Length)) { failed = true; arr[n].t.Abort(); arr[n].t.Join(); } if (arr[n].e != null) e = arr[n].e; arr[n].cnn.Dispose(); |
︙ | ︙ |