Displaying 3 results from an estimated 3 matches for "f08bbd4e".
2020 May 22
0
[PATCH nbdkit] DDRESCUE: MISC FIXES
...ng with EIO", offset, count);
+ nbdkit_debug ("ddrescue: pread: range: 0x%" PRIx64 " 0x%" PRIx32
+ " failing with EIO", offset, count);
*err = EIO;
return -1;
}
diff --git a/tests/test-ddrescue-filter.sh b/tests/test-ddrescue-filter.sh
index f08bbd4e..10a78e4d 100755
--- a/tests/test-ddrescue-filter.sh
+++ b/tests/test-ddrescue-filter.sh
@@ -40,13 +40,13 @@ set -x
requires nbdsh --version
sock=`mktemp -u`
-files="data-file.pid $sock data-ddrescue.txt ddrescue-test1.map"
+files="ddrescue.pid $sock ddrescue.txt ddrescue-test1.m...
2020 May 22
3
[PATCH nbdkit] ddrescue: Miscellaneous fixes.
A few fixes and a possible enhancement to the ddrescue filter. If you
think these are all OK, I will squash it into your patch and push it.
Rich.
2020 May 22
0
[PATCH] [v3] ddrescue mapfile filter
...+156,7 @@ TESTS += \
$(NULL)
EXTRA_DIST += \
test-captive.sh \
+ test-ddrescue-filter.sh \
test-debug-flags.sh \
test-dump-plugin-and-single.sh \
test-dump-plugin-example1.sh \
diff --git a/tests/test-ddrescue-filter.sh b/tests/test-ddrescue-filter.sh
new file mode 100755
index 00000000..f08bbd4e
--- /dev/null
+++ b/tests/test-ddrescue-filter.sh
@@ -0,0 +1,83 @@
+#!/usr/bin/env bash
+# nbdkit
+# Copyright (C) 2020 François Revol.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# *...