@@ -28,13 +28,16 @@ func TestArchive(t *testing.T) {
2828
2929 // Go installation is a directory because it includes the
3030 // standard library source code along with the Go binary.
31- assert .FileExists (t , filepath .Join (assertDir , "bin" , "arm64" , "go" , "bin" , "go" ))
3231 assert .FileExists (t , filepath .Join (assertDir , "bin" , "amd64" , "go" , "bin" , "go" ))
33- assert .FileExists (t , filepath .Join (assertDir , "bin" , "arm64" , "uv" ))
3432 assert .FileExists (t , filepath .Join (assertDir , "bin" , "amd64" , "uv" ))
35- assert .FileExists (t , filepath .Join (assertDir , "bin" , "arm64" , "jq" ))
3633 assert .FileExists (t , filepath .Join (assertDir , "bin" , "amd64" , "jq" ))
3734
35+ // TODO: Serverless clusters do not support arm64 yet.
36+ // Assert these files exist after we support arm64.
37+ assert .NoFileExists (t , filepath .Join (assertDir , "bin" , "arm64" , "go" , "bin" , "go" ))
38+ assert .NoFileExists (t , filepath .Join (assertDir , "bin" , "arm64" , "uv" ))
39+ assert .NoFileExists (t , filepath .Join (assertDir , "bin" , "arm64" , "jq" ))
40+
3841 assert .FileExists (t , filepath .Join (assertDir , "cli" , "go.mod" ))
3942 assert .FileExists (t , filepath .Join (assertDir , "cli" , "go.sum" ))
4043}
0 commit comments