log kopia config dir

This commit is contained in:
HiteshRepo 2024-01-30 16:09:02 +05:30
parent 7a9678b4a2
commit 9c44541787

View File

@ -1,6 +1,7 @@
package testdata package testdata
import ( import (
"fmt"
"os" "os"
"path/filepath" "path/filepath"
@ -31,6 +32,10 @@ var AWSStorageCredEnvs = []string{
func NewPrefixedS3Storage(t tester.TestT) storage.Storage { func NewPrefixedS3Storage(t tester.TestT) storage.Storage {
now := tester.LogTimeOfTest(t) now := tester.LogTimeOfTest(t)
dir := t.TempDir()
fmt.Println("----------------->", dir)
cfg, err := tconfig.ReadTestConfig() cfg, err := tconfig.ReadTestConfig()
require.NoError(t, err, "configuring storage from test file", clues.ToCore(err)) require.NoError(t, err, "configuring storage from test file", clues.ToCore(err))
@ -45,7 +50,7 @@ func NewPrefixedS3Storage(t tester.TestT) storage.Storage {
}, },
storage.CommonConfig{ storage.CommonConfig{
Corso: GetAndInsertCorso(""), Corso: GetAndInsertCorso(""),
KopiaCfgDir: t.TempDir(), KopiaCfgDir: dir,
}) })
require.NoErrorf(t, err, "creating storage: %+v", clues.ToCore(err)) require.NoErrorf(t, err, "creating storage: %+v", clues.ToCore(err))