~kernevil/ubuntu/trusty/bind9/sdlz-hmac-keys

« back to all changes in this revision

Viewing changes to unit/atf-src/atf-c/check.c

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, Matthew Grant, LaMont Jones
  • Date: 2012-10-29 08:37:49 UTC
  • mfrom: (1.9.2)
  • Revision ID: package-import@ubuntu.com-20121029083749-r9inpzl0yuj9xdlu
Tags: 1:9.8.4.dfsg-1
[Matthew Grant]

* Turn off dlopen as it was causing test compile failures.
* Add missing library .postrm files for debhelper

[LaMont Jones]

* New upstream version
* soname fixup
* Ack NMUs

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
                      const atf_fs_path_t *dir)
302
302
{
303
303
    atf_error_t err;
304
 
    const char *workdir;
305
304
 
306
305
    r->pimpl = malloc(sizeof(struct atf_check_result_impl));
307
306
    if (r->pimpl == NULL)
308
307
        return atf_no_memory_error();
309
308
 
310
 
    workdir = atf_config_get("atf_workdir");
 
309
    (void) atf_config_get("atf_workdir");
311
310
 
312
311
    err = array_to_list(argv, &r->pimpl->m_argv);
313
312
    if (atf_is_error(err))