Check-in [f4ea8e39b6]
Overview
Comment:Also include a real file in the synthetic filesystem
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f4ea8e39b6ec6352046e7f2a8f3a9b5fa8010a38d7090f3c37b7eb732f5c14b5
User & Date: rkeene on 2019-09-20 16:55:42
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



20
21
22
23
		type directory
		children "foo"
	}
	::xvfs::processFile $fsName "" "foo" {
		type file
		fileContents "abc"
	}



	return [list "" "foo"]
}

::xvfs::run --directory [pwd] --name synthetic







>
>
>
|



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