Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use exit(255) instead of abort() in the tcl [sqlite_abort] test command. This stops testfixture from creating dozens of core files each time tests are run. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
aec9e13148671e612d4ba674e74c1211 |
User & Date: | dan 2010-07-19 12:44:14.000 |
Context
2010-07-19
| ||
15:01 | Update the CLI test scripts for version 3.7.0. (check-in: 92fe70dadd user: drh tags: trunk) | |
12:44 | Use exit(255) instead of abort() in the tcl [sqlite_abort] test command. This stops testfixture from creating dozens of core files each time tests are run. (check-in: aec9e13148 user: dan tags: trunk) | |
12:05 | Changes to stat.test so that it works with file-format 4. (check-in: f87bb28361 user: dan tags: trunk) | |
Changes
Changes to src/test1.c.
︙ | ︙ | |||
1903 1904 1905 1906 1907 1908 1909 1910 | ){ #if defined(_MSC_VER) /* We do this, otherwise the test will halt with a popup message * that we have to click away before the test will continue. */ _set_abort_behavior( 0, _CALL_REPORTFAULT ); #endif assert( interp==0 ); /* This will always fail */ | > < | 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 | ){ #if defined(_MSC_VER) /* We do this, otherwise the test will halt with a popup message * that we have to click away before the test will continue. */ _set_abort_behavior( 0, _CALL_REPORTFAULT ); #endif exit(255); assert( interp==0 ); /* This will always fail */ return TCL_OK; } /* ** The following routine is a user-defined SQL function whose purpose ** is to test the sqlite_set_result() API. */ |
︙ | ︙ |