~ubuntu-branches/ubuntu/quantal/libarchive/quantal

« back to all changes in this revision

Viewing changes to libarchive/test/test_compat_solaris_tar_acl.c

  • Committer: Package Import Robot
  • Author(s): Andres Mejia
  • Date: 2012-02-23 19:29:24 UTC
  • mfrom: (8.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120223192924-73n4iedok5fwgsyr
Tags: 3.0.3-5
* Detect if locales or locales-all is installed for use with test suite.
* Bump Standards-Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        extract_reference_file(reference1);
46
46
        assert(NULL != (a = archive_read_new()));
47
47
        assertA(0 == archive_read_support_format_all(a));
48
 
        assertA(0 == archive_read_support_compression_all(a));
 
48
        assertA(0 == archive_read_support_filter_all(a));
49
49
        assertA(0 == archive_read_open_filename(a, reference1, 512));
50
50
 
51
51
        /* Archive has 1 entry with some ACLs set on it. */
124
124
 
125
125
        /* Close the archive. */
126
126
        assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
127
 
        assertEqualInt(ARCHIVE_OK, archive_read_finish(a));
 
127
        assertEqualInt(ARCHIVE_OK, archive_read_free(a));
128
128
}