Edit

thodg/libiconv/tests/check-translit.cmd

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2000-07-04 14:48:49
    Hash : 84b6a3e8
    Message : Support for OS/2 using emx+gcc.

  • tests/check-translit.cmd
  • /*
     * check-translit 
     *
     *      Simple check of transliteration facilities.
     *      Usage: check-translit SRCDIR FILE FROMCODE TOCODE
     */
    
    IF RxFuncQuery('SysLoadFuncs') THEN DO
       CALL RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
       CALL SysLoadFuncs
    END
    
    '@echo off'
    
    PARSE ARG srcdir file fromcode tocode
    
    '.\iconv -f 'fromcode' -t 'tocode' < 'srcdir'\'file'.'fromcode' > tmp'
    'cmp 'srcdir'\'file'.'tocode' tmp'
    'rm -f tmp'
    EXIT