Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup(buildtool): disable unit tests when building tor #1368

Merged
merged 10 commits into from
Oct 12, 2023
Merged
4 changes: 4 additions & 0 deletions internal/cmd/buildtool/android_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1701,6 +1701,7 @@ func TestAndroidBuildCdepsTor(t *testing.T) {
"--disable-tool-name-check",
"--disable-systemd",
"--prefix=/",
"--disable-unittests",
},
}, {
Env: []string{},
Expand Down Expand Up @@ -1777,6 +1778,7 @@ func TestAndroidBuildCdepsTor(t *testing.T) {
"--disable-tool-name-check",
"--disable-systemd",
"--prefix=/",
"--disable-unittests",
},
}, {
Env: []string{},
Expand Down Expand Up @@ -1853,6 +1855,7 @@ func TestAndroidBuildCdepsTor(t *testing.T) {
"--disable-tool-name-check",
"--disable-systemd",
"--prefix=/",
"--disable-unittests",
},
}, {
Env: []string{},
Expand Down Expand Up @@ -1929,6 +1932,7 @@ func TestAndroidBuildCdepsTor(t *testing.T) {
"--disable-tool-name-check",
"--disable-systemd",
"--prefix=/",
"--disable-unittests",
},
}, {
Env: []string{},
Expand Down
1 change: 1 addition & 0 deletions internal/cmd/buildtool/cdepstor.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ func cdepsTorBuildMain(globalEnv *cBuildEnv, deps buildtoolmodel.Dependencies) {
"--disable-tool-name-check",
"--disable-systemd",
"--prefix=/",
"--disable-unittests",
)
runtimex.Try0(shellx.RunEx(defaultShellxConfig(), argv, envp))

Expand Down
1 change: 1 addition & 0 deletions internal/cmd/buildtool/linuxcdeps_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,7 @@ func TestLinuxCdepsBuildMain(t *testing.T) {
"--disable-tool-name-check",
"--disable-systemd",
"--prefix=/",
"--disable-unittests",
},
}, {
Env: []string{},
Expand Down