summaryrefslogtreecommitdiff
path: root/dev-libs/leatherman/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-libs/leatherman/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-libs/leatherman/files')
-rw-r--r--dev-libs/leatherman/files/portage-sandbox-test-fix.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-libs/leatherman/files/portage-sandbox-test-fix.patch b/dev-libs/leatherman/files/portage-sandbox-test-fix.patch
deleted file mode 100644
index 584bb229c051..000000000000
--- a/dev-libs/leatherman/files/portage-sandbox-test-fix.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- a/execution/tests/posix/execution.cc 2017-07-20 13:38:22.166185428 -0500
-+++ b/execution/tests/posix/execution.cc 2017-07-20 13:59:51.549316930 -0500
-@@ -178,7 +178,7 @@
- REQUIRE(exec.exit_code == 0);
- auto variables = get_variables(exec.output);
- THEN("the child environment should only contain the given variables") {
-- REQUIRE(variables.size() == 4u);
-+ REQUIRE(variables.size() == 15u);
- REQUIRE(variables.count("TEST_VARIABLE1") == 1);
- REQUIRE(variables["TEST_VARIABLE1"] == "TEST_VALUE1");
- REQUIRE(variables.count("TEST_VARIABLE1") == 1);
-@@ -212,7 +212,7 @@
- REQUIRE(exec.exit_code == 0);
- auto variables = get_variables(exec.output);
- THEN("the child environment should only have LC_ALL and LANG set to en_US.UTF-8") {
-- REQUIRE(variables.size() == 2u);
-+ REQUIRE(variables.size() == 13u);
- REQUIRE(variables.count("LC_ALL") == 1);
- REQUIRE(variables["LC_ALL"] == "en_US.UTF-8");
- REQUIRE(variables.count("LANG") == 1);
-@@ -229,7 +229,7 @@
- auto variables = get_variables(exec.output);
- CAPTURE(exec.output);
- THEN("the child environment should not have LC_ALL and LANG set") {
-- REQUIRE(variables.empty());
-+ REQUIRE(variables.size() == 11);
- }
- }
- WHEN("requested to inherit locale with parent environment") {
-@@ -528,7 +528,7 @@
- });
- REQUIRE(success);
- THEN("the child environment should only contain the given variables") {
-- REQUIRE(variables.size() == 4u);
-+ REQUIRE(variables.size() == 15u);
- REQUIRE(variables.count("TEST_VARIABLE1") == 1);
- REQUIRE(variables["TEST_VARIABLE1"] == "TEST_VALUE1");
- REQUIRE(variables.count("TEST_VARIABLE1") == 1);