diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-02-17 17:44:44 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-18 16:53:46 +0000 |
commit | 5d9a640495c9fba008f523d6f54b66106ead4d0f (patch) | |
tree | dc371c72ec62dcb0732ff02e0aa4a0271a3466e2 /Makefile.SH | |
parent | a4341a650d4ab04956b1f7ad537e1692aed7ed15 (diff) | |
download | perl-5d9a640495c9fba008f523d6f54b66106ead4d0f.tar.gz |
Re: Why t/TEST and not Test::Harness?
Message-ID: <20010217224444.A6679@magnonel.guild.net>
Replace UTEST with TEST -utf8.
p4raw-id: //depot/perl@8821
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index 37679af4ea..02612e6895 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -844,9 +844,9 @@ test check: test-prep utest ucheck: test-prep if (true </dev/tty) >/dev/null 2>&1; then \ - cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \ + cd t && $(LDLIBPTH) ./perl TEST -utf8 </dev/tty; \ else \ - cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \ + cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST -utf8; \ fi # For testing without a tty or controling terminal. See t/op/stat.t |