diff options
author | Marcus Brinkmann <[email protected]> | 2007-09-27 13:01:54 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2007-09-27 13:01:54 +0000 |
commit | 37ac53e74c6dd66c3df2ad052ef0302cf90cf4b0 (patch) | |
tree | b119cced434baf2903f87527dafcc39bed26d918 /tests/t-engine-info.c | |
parent | doc/ (diff) | |
download | gpgme-37ac53e74c6dd66c3df2ad052ef0302cf90cf4b0.tar.gz gpgme-37ac53e74c6dd66c3df2ad052ef0302cf90cf4b0.zip |
2007-09-27 Marcus Brinkmann <[email protected]>
* assuan-pipe-connect.c (pipe_connect_gpgme): Do not close process
handle here. Use this function also on Unix systems.
gpgme/
2007-09-27 Marcus Brinkmann <[email protected]>
* w32-glib-io.c (_gpgme_io_spawn),
w32-qt-io.cpp (_gpgme_io_spawn), w32-io.c (_gpgme_io_spawn): Close
the process handle, return 0.
tests/
2007-09-27 Marcus Brinkmann <[email protected]>
* t-engine-info.c (check_engine_info): Fix debug output.
* gpg/Makefile.am (tests_unix): New variable.
(TESTS): Use it.
* gpg/t-support.h (passphrase_cb) [HAVE_W32_SYSTEM]: Use WriteFile instead of write.
* gpg/t-wait.c [HAVE_W32_SYSTEM]: Define sleep as _sleep.
Diffstat (limited to 'tests/t-engine-info.c')
-rw-r--r-- | tests/t-engine-info.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/t-engine-info.c b/tests/t-engine-info.c index 4af2d4a3..3864fe5f 100644 --- a/tests/t-engine-info.c +++ b/tests/t-engine-info.c @@ -1,5 +1,5 @@ /* t-engine-info.c - Regression test for gpgme_get_engine_info. - Copyright (C) 2003, 2004 g10 Code GmbH + Copyright (C) 2003, 2004, 2007 g10 Code GmbH This file is part of GPGME. @@ -54,13 +54,13 @@ check_engine_info (gpgme_engine_info_t info, gpgme_protocol_t protocol, } if (strcmp (info->file_name, file_name)) { - fprintf (stderr, "Unexpected file name to executable %s (expected %s instead)", + fprintf (stderr, "Unexpected file name to executable %s (expected %s instead)\n", info->file_name, file_name); exit (1); } if (strcmp (info->req_version, req_version)) { - fprintf (stderr, "Unexpected required version %s (expected %s instead)", + fprintf (stderr, "Unexpected required version %s (expected %s instead)\n", info->req_version, req_version); exit (1); } |