~ubuntu-branches/ubuntu/trusty/glib2.0/trusty-proposed

« back to all changes in this revision

Viewing changes to glib/tests/mappedfile.c

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-03-04 13:08:00 UTC
  • mfrom: (1.63.34)
  • Revision ID: package-import@ubuntu.com-20140304130800-6f4fs4s8iri00blg
Tags: 2.39.91-0ubuntu1
* New upstream release 2.39.91
* revert-0001-Improve-GAsyncQueue-test-coverage.patch: Drop, fixed upstream.
* Re-enable test_timer_stop to gather more information about the failure.
* debian/libglib2.0-0.symbols: Update with new symbols in this release. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
  file = g_mapped_file_new ("/dev/null", FALSE, &error);
56
56
  g_assert (g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_INVAL) ||
 
57
            g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NODEV) ||
57
58
            g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOMEM));
58
59
  g_assert (file == NULL);
59
60
  g_error_free (error);