Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove some architecture tests
Browse files Browse the repository at this point in the history
Not necessary to test that many in this module.

Signed-off-by: Chris Koch <[email protected]>
hugelgupf committed Jan 28, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent f417062 commit b5cd55c
Showing 1 changed file with 0 additions and 54 deletions.
54 changes: 0 additions & 54 deletions cmd/mkuimage/main_test.go
Original file line number Diff line number Diff line change
@@ -144,42 +144,6 @@ func TestUrootCmdline(t *testing.T) {
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "MIPS build",
env: []string{"GOARCH=mips"},
args: []string{
"github.com/u-root/u-root/cmds/core/init",
"github.com/u-root/u-root/cmds/core/elvish",
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "MIPSLE build",
env: []string{"GOARCH=mipsle"},
args: []string{
"github.com/u-root/u-root/cmds/core/init",
"github.com/u-root/u-root/cmds/core/elvish",
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "MIPS64 build",
env: []string{"GOARCH=mips64"},
args: []string{
"github.com/u-root/u-root/cmds/core/init",
"github.com/u-root/u-root/cmds/core/elvish",
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "MIPS64LE build",
env: []string{"GOARCH=mips64le"},
args: []string{
"github.com/u-root/u-root/cmds/core/init",
"github.com/u-root/u-root/cmds/core/elvish",
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "ARM7 build",
env: []string{"GOARCH=arm", "GOARM=7"},
@@ -198,24 +162,6 @@ func TestUrootCmdline(t *testing.T) {
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "386 (32 bit) build",
env: []string{"GOARCH=386"},
args: []string{
"github.com/u-root/u-root/cmds/core/init",
"github.com/u-root/u-root/cmds/core/elvish",
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "Power 64bit build",
env: []string{"GOARCH=ppc64le"},
args: []string{
"github.com/u-root/u-root/cmds/core/init",
"github.com/u-root/u-root/cmds/core/elvish",
"github.com/u-root/u-root/cmds/core/echo",
},
},
{
name: "RISCV 64bit build",
env: []string{"GOARCH=riscv64"},

0 comments on commit b5cd55c

Please sign in to comment.