diff options
author | NIIBE Yutaka <[email protected]> | 2022-11-22 06:03:43 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2022-11-25 12:59:15 +0000 |
commit | b94fe0e0077f1b8a1622eb67eac85675e6c24198 (patch) | |
tree | 73818c562e55253bfef31f0adcfefe45ea445a6b | |
parent | w32: Exclude tests with HOME. (diff) | |
download | gnupg-b94fe0e0077f1b8a1622eb67eac85675e6c24198.tar.gz gnupg-b94fe0e0077f1b8a1622eb67eac85675e6c24198.zip |
tests: Use 233 for invalid value of FD.
* tests/openpgp/issue2941.scm: Use 233.
--
On Windows machine (emulated by Wine), 23 may be valid value for
handle.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rwxr-xr-x | tests/openpgp/issue2941.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/openpgp/issue2941.scm b/tests/openpgp/issue2941.scm index 8f625ebe3..306df6cb5 100755 --- a/tests/openpgp/issue2941.scm +++ b/tests/openpgp/issue2941.scm @@ -29,6 +29,6 @@ (for-each-p "Checking invocation with invalid file descriptors (issue2941)." (lambda (option) - (check-failure `(,(string-append "--" option "=23") --sign gpg.conf))) + (check-failure `(,(string-append "--" option "=233") --sign gpg.conf))) '("status-fd" "attribute-fd" "logger-fd" "override-session-key-fd" "passphrase-fd" "command-fd")) |