Compare commits
5 Commits
c8-stream-
...
i8-stream-
Author | SHA1 | Date |
---|---|---|
Arkady L. Shane | de874c8624 | 6 months ago |
Arkady L. Shane | 828601abc2 | 6 months ago |
Arkady L. Shane | 187512a541 | 6 months ago |
Arkady L. Shane | fc5efe612c | 6 months ago |
MSVSphere Packaging Team | 4b503cec8b | 11 months ago |
@ -0,0 +1,38 @@
|
|||||||
|
From 6eba4365d9085a1c89f55f381e381e24b58ea7d0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Martin von Zweigbergk <martinvonz@google.com>
|
||||||
|
Date: Fri, 21 May 2021 12:03:33 -0400
|
||||||
|
Subject: [PATCH] tests: make test-archive.t pass on py3.9 (issue6504)
|
||||||
|
|
||||||
|
Something got stricter at parsing URL query parameters and now the
|
||||||
|
parameters need to be separated by "&"; ";" is no longer allowed. See
|
||||||
|
issue6504 for details.
|
||||||
|
|
||||||
|
Differential Revision: https://phab.mercurial-scm.org/D10472
|
||||||
|
|
||||||
|
Origin: upstream, https://www.mercurial-scm.org/repo/hg/rev/dc8976cc3a6e
|
||||||
|
Bug-Debian: https://bugs.debian.org/986514
|
||||||
|
Bug-upstream: https://bz.mercurial-scm.org/show_bug.cgi?id=6504
|
||||||
|
---
|
||||||
|
tests/test-archive.t | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/tests/test-archive.t b/tests/test-archive.t
|
||||||
|
index 209d269..4c4edce 100644
|
||||||
|
--- a/tests/test-archive.t
|
||||||
|
+++ b/tests/test-archive.t
|
||||||
|
@@ -326,10 +326,10 @@ invalid arch type should give 404
|
||||||
|
> pass
|
||||||
|
> if len(sys.argv) <= 3:
|
||||||
|
> node, archive = sys.argv[1:]
|
||||||
|
- > requeststr = 'cmd=archive;node=%s;type=%s' % (node, archive)
|
||||||
|
+ > requeststr = 'cmd=archive&node=%s&type=%s' % (node, archive)
|
||||||
|
> else:
|
||||||
|
> node, archive, file = sys.argv[1:]
|
||||||
|
- > requeststr = 'cmd=archive;node=%s;type=%s;file=%s' % (node, archive, file)
|
||||||
|
+ > requeststr = 'cmd=archive&node=%s&type=%s&file=%s' % (node, archive, file)
|
||||||
|
> try:
|
||||||
|
> stdout = sys.stdout.buffer
|
||||||
|
> except AttributeError:
|
||||||
|
--
|
||||||
|
2.45.0
|
||||||
|
|
@ -0,0 +1,36 @@
|
|||||||
|
From 9fa00dd4895facd51a28ede0546d31691efdd558 Mon Sep 17 00:00:00 2001
|
||||||
|
From: tigro <tigro@msvsphere-os.ru>
|
||||||
|
Date: Mon, 20 May 2024 14:07:16 +0300
|
||||||
|
Subject: [PATCH 2/2] add Python 3 exception output to test-lfs-serve-access.t
|
||||||
|
|
||||||
|
---
|
||||||
|
tests/test-lfs-serve-access.t | 6 ++++--
|
||||||
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/tests/test-lfs-serve-access.t b/tests/test-lfs-serve-access.t
|
||||||
|
index 6331c5a..e91d256 100644
|
||||||
|
--- a/tests/test-lfs-serve-access.t
|
||||||
|
+++ b/tests/test-lfs-serve-access.t
|
||||||
|
@@ -337,7 +337,8 @@ Test a checksum failure during the processing of the GET request
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: localstore.download(oid, req.bodyfh) (glob)
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: super(badstore, self).download(oid, src) (glob)
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: % oid) (glob)
|
||||||
|
- $LOCALIP - - [$ERRDATE$] HG error: LfsCorruptionError: corrupt remote lfs object: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c (glob)
|
||||||
|
+ $LOCALIP - - [$ERRDATE$] HG error: LfsCorruptionError: corrupt remote lfs object: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c (no-py3 !)
|
||||||
|
+ $LOCALIP - - [$ERRDATE$] HG error: hgext.lfs.blobstore.LfsCorruptionError: b'corrupt remote lfs object: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c' (py3 !)
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: (glob)
|
||||||
|
$LOCALIP - - [$ERRDATE$] Exception happened during processing request '/.hg/lfs/objects/276f73cfd75f9fb519810df5f5d96d6594ca2521abd86cbcd92122f7d51a1f3d': (glob)
|
||||||
|
Traceback (most recent call last):
|
||||||
|
@@ -359,7 +360,8 @@ Test a checksum failure during the processing of the GET request
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: blob = self._read(self.vfs, oid, verify) (glob)
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: blobstore._verify(oid, 'dummy content') (glob)
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: hint=_('run hg verify')) (glob)
|
||||||
|
- $LOCALIP - - [$ERRDATE$] HG error: LfsCorruptionError: detected corrupt lfs object: 276f73cfd75f9fb519810df5f5d96d6594ca2521abd86cbcd92122f7d51a1f3d (glob)
|
||||||
|
+ $LOCALIP - - [$ERRDATE$] HG error: LfsCorruptionError: detected corrupt lfs object: 276f73cfd75f9fb519810df5f5d96d6594ca2521abd86cbcd92122f7d51a1f3d (no-py3 !)
|
||||||
|
+ $LOCALIP - - [$ERRDATE$] HG error: hgext.lfs.blobstore.LfsCorruptionError: b'detected corrupt lfs object: 276f73cfd75f9fb519810df5f5d96d6594ca2521abd86cbcd92122f7d51a1f3d' (py3 !)
|
||||||
|
$LOCALIP - - [$ERRDATE$] HG error: (glob)
|
||||||
|
|
||||||
|
Basic Authorization headers are returned by the Batch API, and sent back with
|
||||||
|
--
|
||||||
|
2.45.0
|
||||||
|
|
@ -1,3 +1,4 @@
|
|||||||
test-https.t
|
test-https.t
|
||||||
test-profile.t
|
test-profile.t
|
||||||
test-wireproto-exchangev2.t
|
test-wireproto-exchangev2.t
|
||||||
|
test-lfs-serve-access.t
|
||||||
|
Loading…
Reference in new issue