Skip to content

Commit 8e5bf0c

Browse files
mariashreneighbor
authored andcommitted
Do not run log trace id test on windows
We don't support it for winc yet Signed-off-by: Renee Chu <[email protected]>
1 parent c1bc9f5 commit 8e5bf0c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cell/trace_id_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package cell_test
33
import (
44
"os"
55
"path/filepath"
6+
"runtime"
67
"strings"
78

89
"code.cloudfoundry.org/archiver/extractor/test_helper"
@@ -35,6 +36,9 @@ var _ = Describe("TraceId", func() {
3536
)
3637

3738
BeforeEach(func() {
39+
if runtime.GOOS == "windows" {
40+
Skip(" not yet supported on windows")
41+
}
3842
requestId = "0bc29108-c522-4360-93dd-30ca38cce13d"
3943
loggedRequestId = strings.ReplaceAll(requestId, "-", "")
4044
fileServer, fileServerStaticDir = componentMaker.FileServer()

0 commit comments

Comments
 (0)