Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add the 'test-file-environment' test command. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | symlinks |
| Files: | files | file ages | folders |
| SHA1: |
c891d86c6c06ba2631d5281465f5d55c |
| User & Date: | mistachkin 2017-02-13 23:56:10.736 |
Context
|
2017-02-14
| ||
| 00:03 | Enhance verbosity of the new 'test-file-environment' command. check-in: 804bb55f07 user: mistachkin tags: symlinks | |
|
2017-02-13
| ||
| 23:56 | Add the 'test-file-environment' test command. check-in: c891d86c6c user: mistachkin tags: symlinks | |
| 21:03 | Oops, missed one thing in the previous check-in. check-in: b3fc0a133c user: mistachkin tags: symlinks | |
Changes
Changes to src/file.c.
| ︙ | ︙ | |||
937 938 939 940 941 942 943 944 945 946 947 948 949 950 |
zOut[0] = fossil_toupper(zOut[0]);
}
}
#endif
blob_resize(pOut, file_simplify_name(blob_buffer(pOut),
blob_size(pOut), slash));
}
/*
** COMMAND: test-canonical-name
**
** Usage: %fossil test-canonical-name FILENAME...
**
** Test the operation of the canonical name generator.
| > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 |
zOut[0] = fossil_toupper(zOut[0]);
}
}
#endif
blob_resize(pOut, file_simplify_name(blob_buffer(pOut),
blob_size(pOut), slash));
}
/*
** COMMAND: test-file-environment
**
** Usage: %fossil test-file-environment FILENAME...
**
** Display the effective file handling subsystem "settings" and then
** display file system information about the files specified, if any.
*/
void cmd_test_file_environment(void){
int i;
Blob x;
int slashFlag = find_option("slash",0,0)!=0;
blob_zero(&x);
fossil_print("filenames_are_case_sensitive() = %d\n",
filenames_are_case_sensitive());
fossil_print("db_allow_symlinks_by_default() = %d\n",
db_allow_symlinks_by_default());
fossil_print("db_allow_symlinks(0) = %d\n", db_allow_symlinks(0));
fossil_print("db_allow_symlinks(1) = %d\n", db_allow_symlinks(1));
for(i=2; i<g.argc; i++){
int rc;
char zBuf[100];
const char *zName = g.argv[i];
struct fossilStat testFileStat;
file_canonical_name(zName, &x, slashFlag);
fossil_print("[%s] -> [%s]\n", zName, blob_buffer(&x));
blob_reset(&x);
memset(&testFileStat, 0, sizeof(struct fossilStat));
rc = fossil_stat(zName, &testFileStat, 1, 1);
fossil_print(" stat_rc = %d\n", rc);
sqlite3_snprintf(sizeof(zBuf), zBuf, "%lld", testFileStat.st_size);
fossil_print(" file_size = %s\n", zBuf);
sqlite3_snprintf(sizeof(zBuf), zBuf, "%lld", testFileStat.st_mtime);
fossil_print(" file_mtime = %s\n", zBuf);
fossil_print(" file_mode = %d\n", testFileStat.st_mode);
}
}
/*
** COMMAND: test-canonical-name
**
** Usage: %fossil test-canonical-name FILENAME...
**
** Test the operation of the canonical name generator.
|
| ︙ | ︙ |