summaryrefslogtreecommitdiff
path: root/lib/utf8.t
Commit message (Collapse)AuthorAgeFilesLines
* utf.pm needs to require Carp before croak()ingNicholas Clark2005-01-131-1/+7
| | | p4raw-id: //depot/perl@23788
* I must be tired today.Rafael Garcia-Suarez2004-03-211-3/+3
| | | p4raw-id: //depot/perl@22547
* Re: [perl #27803] perl crashes when utf8::upgrade($offsetOK_scalar) SADAHIRO Tomoyuki2004-03-211-1/+11
| | | | | Message-Id: <20040321151828.DAC6.BQW10602@nifty.com> p4raw-id: //depot/perl@22545
* Add a readonly check to Perl_sv_utf8_upgrade_flags, a regresion testNicholas Clark2004-03-071-1/+7
| | | | | in utf8.t, and fix 3 bugs it exposed in utfhash.t p4raw-id: //depot/perl@22463
* Exercise the utf8:: "internal" functions.Jarkko Hietaniemi2003-06-141-1/+78
| | | p4raw-id: //depot/perl@19778
* Some low-hanging fruit for EBCDIC portabilityJarkko Hietaniemi2003-03-311-3/+7
| | | | | (or for marking as EBCDIC todos) p4raw-id: //depot/perl@19097
* typos and other minor thingsTodd C. Miller2003-03-111-1/+1
| | | | | | From: "Todd C. Miller" <Todd.Miller@courtesan.com> Message-Id: <200303110400.h2B40tEQ018838@xerxes.courtesan.com> p4raw-id: //depot/perl@18904
* [Patch] parsing under encoding (Re: [Encode] HEADS-UP; $Encode::VERSION++ to ↵Inaba Hiroto2003-02-051-1/+6
| | | | | | | enhance filter option)([perl #16823]) Message-ID: <3E3BC46B.6C687CFD@st.rim.or.jp> p4raw-id: //depot/perl@18660
* [FIX] Re: UTF-8 failures (surprise!)Adrian M. Enache2003-01-301-2/+45
| | | | | | | Message-ID: <20030130084809.GA16902@ratsnest.hole> Fix for half of the failures, with an expanded test. p4raw-id: //depot/perl@18603
* new test based on:Marty Pauley2002-11-051-1/+16
| | | | | | Subject: [TEST] for [PATCH] bug in utf8.c(?) Message-ID: <20021018200238.GY3764@soto.kasei.com> p4raw-id: //depot/perl@18106
* We do not want utf8.t to be compiled under -Mutf8,Jarkko Hietaniemi2002-05-221-0/+2
| | | | | wonky as it sounds. p4raw-id: //depot/perl@16749
* EBCDIC: the toke.c wariness about UTF-8 (really, UTF-EBCDIC)Jarkko Hietaniemi2002-05-111-1/+1
| | | | | | | | scripts does not apply any more. (The utf8.t needed a little bit of relaxing to work in EBCDIC, since *both* the bytes in subtest #30 are illegal UTF-EBCDIC, and the error message matched is slightly different.) The utf8.t now passes. p4raw-id: //depot/perl@16550
* non-perlio robustness.Jarkko Hietaniemi2002-04-031-1/+8
| | | p4raw-id: //depot/perl@15714
* binmode :bytes, again.Jarkko Hietaniemi2002-03-281-1/+2
| | | p4raw-id: //depot/perl@15587
* Make the utf8 malformedness messages more verbose.Jarkko Hietaniemi2001-12-181-1/+1
| | | p4raw-id: //depot/perl@13757
* Re: [PATCH] use utf8; testsNicholas Clark2001-12-121-17/+107
| | | | | Message-ID: <20011213001658.I21702@plum.flirble.org> p4raw-id: //depot/perl@13666
* use utf8; testsNicholas Clark2001-12-121-13/+60
| | | | | Message-ID: <20011212200704.E21702@plum.flirble.org> p4raw-id: //depot/perl@13662
* Re: use utf8; with bad utf8Nicholas Clark2001-12-111-2/+19
| | | | | Message-ID: <20011211194921.R21702@plum.flirble.org> p4raw-id: //depot/perl@13628
* The Grand Trek: move the *.t files from t/ to lib/ and ext/.Jarkko Hietaniemi2001-06-181-0/+103
No doubt I made some mistakes like missed some files or misnamed some files. The naming rules were more or less: (1) if the module is from CPAN, follows its ways, be it t/*.t or test.pl. (2) otherwise if there are multiple tests for a module put them in a t/ (3) otherwise if there's only one test put it in Module.t (4) helper files go to module/ (locale, strict, warnings) (5) use longer filenames now that we can (but e.g. the compat-0.6.t and the Text::Balanced test files still were renamed to be more civil against the 8.3 people) installperl was updated appropriately not to install the *.t files or the help files from under lib. TODO: some helper files still remain under t/ that could follow their 'masters'. UPDATE: On second thoughts, why should they. They can continue to live under t/lib, and in fact the locale/strict/warnings helpers that were moved could be moved back. This way the amount of non-installable stuff under lib/ stays smaller. p4raw-id: //depot/perl@10676