Overview
| Comment: | Also include a real file in the synthetic filesystem |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f4ea8e39b6ec6352046e7f2a8f3a9b5f |
| User & Date: | rkeene on 2019-09-20 16:55:42.227 |
| Other Links: | manifest | tags |
Context
|
2019-09-20
| ||
| 17:03 | Create the synthetic data from a dict check-in: fc90ef3457 user: rkeene tags: trunk | |
| 16:55 | Also include a real file in the synthetic filesystem check-in: f4ea8e39b6 user: rkeene tags: trunk | |
| 16:39 | Added example of a synthetic filesystem creation check-in: c8742de968 user: rkeene tags: trunk | |
Changes
Modified xvfs-create-synthetic
from [2b5ddbc377]
to [4c3823a4cf].
| ︙ | ︙ | |||
13 14 15 16 17 18 19 |
type directory
children "foo"
}
::xvfs::processFile $fsName "" "foo" {
type file
fileContents "abc"
}
| > > > | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
type directory
children "foo"
}
::xvfs::processFile $fsName "" "foo" {
type file
fileContents "abc"
}
::xvfs::processFile $fsName "./xvfs-create-synthetic" "xvfs-create-synthetic" {
type file
}
return [list "" "foo" "xvfs-create-synthetic"]
}
::xvfs::run --directory [pwd] --name synthetic
|