~ubuntu-branches/ubuntu/natty/augeas/natty

« back to all changes in this revision

Viewing changes to gnulib/tests/test-wctype.c

  • Committer: Bazaar Package Importer
  • Author(s): Nicolas Valcárcel Scerpella (Canonical)
  • Date: 2010-06-25 16:12:45 UTC
  • mfrom: (1.2.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20100625161245-8pwq1gbejazeo07u
Tags: 0.7.2-1
* New upstream release
* Droped 50_iptables-lens.diff. Included upstream
* Updated libaugeas0.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  /* Check that the isw* functions exist as functions or as macros.  */
34
34
  (void) iswalnum (0);
35
35
  (void) iswalpha (0);
36
 
#if 0 /* not portable: missing on mingw */
37
36
  (void) iswblank (0);
38
 
#endif
39
37
  (void) iswcntrl (0);
40
38
  (void) iswdigit (0);
41
39
  (void) iswgraph (0);
49
47
  /* Check that the isw* functions map WEOF to 0.  */
50
48
  ASSERT (!iswalnum (e));
51
49
  ASSERT (!iswalpha (e));
52
 
#if 0 /* not portable: missing on mingw */
53
50
  ASSERT (!iswblank (e));
54
 
#endif
55
51
  ASSERT (!iswcntrl (e));
56
52
  ASSERT (!iswdigit (e));
57
53
  ASSERT (!iswgraph (e));