diff options
Diffstat (limited to 'gettext-tools/tests/format-librep-1')
-rw-r--r--[-rwxr-xr-x] | gettext-tools/tests/format-librep-1 | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gettext-tools/tests/format-librep-1 b/gettext-tools/tests/format-librep-1 index 0fe2ec1..2168381 100755..100644 --- a/gettext-tools/tests/format-librep-1 +++ b/gettext-tools/tests/format-librep-1 @@ -3,10 +3,6 @@ # Test recognition of librep format strings. -tmpfiles="" -trap 'rm -fr $tmpfiles' 1 2 3 15 - -tmpfiles="$tmpfiles f-lr-1.data" cat <<\EOF > f-lr-1.data # Valid: no argument "abc%%" @@ -77,7 +73,6 @@ n=0 while read comment; do read string n=`expr $n + 1` - tmpfiles="$tmpfiles f-lr-1-$n.in f-lr-1-$n.po" cat <<EOF > f-lr-1-$n.in (_ ${string}); EOF @@ -107,6 +102,4 @@ EOF rm -f f-lr-1-$n.in f-lr-1-$n.po done < f-lr-1.data -rm -fr $tmpfiles - exit 0 |