mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
353b200c0e
Diff: https://github.com/restic/restic/compare/v0.15.2...v0.16.0 Changelog: https://github.com/restic/restic/blob/v0.16.0/CHANGELOG.md
26 lines
819 B
Diff
26 lines
819 B
Diff
From 72f7d8abee34107b815e49540f2fad7f1ab0b2cc Mon Sep 17 00:00:00 2001
|
|
From: Simon Bruder <simon@sbruder.de>
|
|
Date: Thu, 25 Feb 2021 09:20:51 +0100
|
|
Subject: [PATCH] Skip testing restore with permission failure
|
|
|
|
The test fails in sandboxed builds.
|
|
---
|
|
cmd/restic/cmd_restore_integration_test.go | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/cmd/restic/cmd_restore_integration_test.go b/cmd/restic/cmd_restore_integration_test.go
|
|
index 2c7cbe1fb..f25f13754 100644
|
|
--- a/cmd/restic/cmd_restore_integration_test.go
|
|
+++ b/cmd/restic/cmd_restore_integration_test.go
|
|
@@ -200,6 +200,7 @@ func TestRestoreLatest(t *testing.T) {
|
|
}
|
|
|
|
func TestRestoreWithPermissionFailure(t *testing.T) {
|
|
+ t.Skip("Skipping testing restore with permission failure")
|
|
env, cleanup := withTestEnvironment(t)
|
|
defer cleanup()
|
|
|
|
--
|
|
2.41.0
|
|
|