glib/gio/tests/live-g-file.txt
Philip Withnall 00bfb3ab44 tree: Fix various typos and outdated terminology
This was mostly machine generated with the following command:
```
codespell \
    --builtin clear,rare,usage \
    --skip './po/*' --skip './.git/*' --skip './NEWS*' \
    --write-changes .
```
using the latest git version of `codespell` as per [these
instructions](https://github.com/codespell-project/codespell#user-content-updating).

Then I manually checked each change using `git add -p`, made a few
manual fixups and dropped a load of incorrect changes.

There are still some outdated or loaded terms used in GLib, mostly to do
with git branch terminology. They will need to be changed later as part
of a wider migration of git terminology.

If I’ve missed anything, please file an issue!

Signed-off-by: Philip Withnall <withnall@endlessm.com>
2020-06-12 15:01:08 +01:00

28 lines
1.0 KiB
Plaintext

Before you start testing it would be good to explain how it works.
The script works in three modes:
1. read-only (no special arguments) - suitable for read-only backends. Just
create the sample structure using the second mode, pack it (tar -p is
preferred to preserve unix modes) and put it on a reachable place.
2. create-structure - only creates reference structure for later testing
in read-only mode
3. write mode - full test suite, creates testing structure and performs all
read and write tests. Please note the delete/move tests are included
in this mode and target directory structure is unusable after the script
is finished.
To see the list of available parameters just run 'live-g-file --help'
Notes:
- it's advised to clean target directory first, otherwise some tests might fail
(i.e. the tests creating testing structure)
Tested:
- local filesystem (/tmp/...)
- file:// uri (file:///tmp/...)
- locatest:// gvfs backend (localtest:///tmp/...)
- FAT16 filesystem (no POSIX extensions)