Skip to content

Commit

Permalink
* iconvdata/run-iconv-test.sh: Use = instead of == in test.
Browse files Browse the repository at this point in the history
	Patch by Reuben Thomas.
  • Loading branch information
Ulrich Drepper committed May 15, 2008
1 parent a754f01 commit c8d49f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2008-05-14 Ulrich Drepper <drepper@redhat.com>

* iconvdata/run-iconv-test.sh: Use = instead of == in test.
Patch by Reuben Thomas.

2008-05-14 Joseph Myers <joseph@codesourcery.com>

* iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define.
Expand Down
4 changes: 2 additions & 2 deletions iconvdata/run-iconv-test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh -f
# Run available iconv(1) tests.
# Copyright (C) 1998-2002, 2005, 2006 Free Software Foundation, Inc.
# Copyright (C) 1998-2002, 2005, 2006, 2008 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
#
Expand Down Expand Up @@ -130,7 +130,7 @@ while read from to subset targets; do
done
fi

if test "$subset" == N; then
if test "$subset" = N; then
echo $ac_n " suntzu: ASCII -> $to -> ASCII $ac_c"
$PROG -f ASCII -t $to testdata/suntzus |
$PROG -f $to -t ASCII > $temp1 ||
Expand Down

0 comments on commit c8d49f0

Please sign in to comment.