fstest: update comments on how to run individual tests

This commit is contained in:
Nick Craig-Wood 2018-04-30 17:22:03 +01:00
parent 63f413f477
commit ad02d1be3f

View file

@ -662,7 +662,7 @@ func Run(t *testing.T, opt *Opt) {
// TestFsDirMove tests DirMove
//
// go test -v -run '^Test(Setup|Init|FsMkdir|FsPutFile1|FsPutFile2|FsUpdateFile1|FsDirMove)$
// go test -v -run 'TestIntegration/Test(Setup|Init|FsMkdir|FsPutFile1|FsPutFile2|FsUpdateFile1|FsDirMove)$
t.Run("TestFsDirMove", func(t *testing.T) {
skipIfNotOk(t)
@ -906,6 +906,8 @@ func Run(t *testing.T, opt *Opt) {
})
// TestObjectOpenRange tests that Open works with RangeOption
//
// go test -v -run 'TestIntegration/Test(Setup|Init|FsMkdir|FsPutFile1|FsPutFile2|FsUpdateFile1|ObjectOpenRange)$'
t.Run("TestObjectOpenRange", func(t *testing.T) {
skipIfNotOk(t)
obj := findObject(t, remote, file1.Path)