1#!/bin/sh 2# $Id: testdata-8bit,v 1.1 2004/12/19 16:19:12 tom Exp $ 3 4# Select one of the "SAMPLE=" lines, to test handling of characters which 5# are nonprinting in a POSIX locale: 6 7case .$1 in 8 # C1 controls 9.8) 10 SAMPLE="����������������" 11 ;; 12.9) 13 SAMPLE="����������������" 14 ;; 15 16# Latin-1 17.[aA]) 18 SAMPLE="����������������" 19 ;; 20.[bB]) 21 SAMPLE="����������������" 22 ;; 23.[cC]) 24 SAMPLE="����������������" 25 ;; 26.[dD]) 27 SAMPLE="����������������" 28 ;; 29.[eE]) 30 SAMPLE="����������������" 31 ;; 32.[fF]) 33 SAMPLE="����������������" 34 ;; 35*) 36 # C0 controls (except a few which are always treated specially by curses): 37 SAMPLE="" 38 ;; 39esac 40