Differences From Artifact [811424cd7f]:
- File src/file.c — part of check-in [add7524533] at 2013-09-19 11:18:33 on branch trunk — Bug-fix in file_relative_name(): If filename is a super-directory of the current directory then the final slash is missing. Test-case: "fossil test-relative-name /home/ --slash". Result "../../.." should be "../../../". This bugfix is needed for my next commit. (user: jan.nijtmans size: 30966)
To Artifact [222d00f8fc]:
- File src/file.c — part of check-in [6e1e4bb83d] at 2013-09-19 11:48:39 on branch trunk — Fix MSVC build error and warnings: c:\localdata\workspace\fossil\src\util.c(249) : warning C4715: 'fossil_timer_fetch' : not all control paths return a value c:\localdata\workspace\fossil\src\util.c(270) : warning C4715: 'fossil_timer_reset' : not all control paths return a value (user: jan.nijtmans size: 30966) [more...]
| ︙ | |||
919 920 921 922 923 924 925 | 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 | - + |
/*
** COMMAND: test-relative-name
**
** Test the operation of the relative name generator.
*/
void cmd_test_relative_name(void){
int i;
|
| ︙ |