diff options
author | Jim Meyering <jim@meyering.net> | 2006-06-16 09:54:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-06-16 09:54:29 +0000 |
commit | a2b4ccc56a2a200b0cf92896f1cc5dede286c014 (patch) | |
tree | 56db915a50980a40e2f47e0098ed3a31f52b45e6 /tests/join | |
parent | 585d68178339478f1f52422a84bcbaecc591b307 (diff) | |
download | coreutils-a2b4ccc56a2a200b0cf92896f1cc5dede286c014.tar.xz |
remove the files once and for all, so that tools like cvsps (and even 'cvs update') don't think they're still around
Diffstat (limited to 'tests/join')
-rw-r--r-- | tests/join/failures | 19 | ||||
-rw-r--r-- | tests/join/range-tests | 18 |
2 files changed, 0 insertions, 37 deletions
diff --git a/tests/join/failures b/tests/join/failures deleted file mode 100644 index defc474ce..000000000 --- a/tests/join/failures +++ /dev/null @@ -1,19 +0,0 @@ -# ./tr a '[c*]b' -# ./tr -s abc zy -# ./tr abc zy -tr a '[:not-a-class:]' < /dev/null -tr a '[:digit:]' < /dev/null -tr '[c*]' k < /dev/null -tr a '[=c=]' < /dev/null -tr a '[c*][c*]' < /dev/null -tr -ds abd '[c*]' < /dev/null -tr -c '[:lower:]' '[:upper:]' < /dev/null -tr '[:lower:]' '[:lower:]' < /dev/null -tr '0-9[:lower:]' '[:upper:]' < /dev/null -tr a '' < /dev/null -tr -s '\432' < /dev/null -tr a 'abc\' < /dev/null -tr a '\x' < /dev/null -tr -s < /dev/null - -# And make sure tr does the right thing when POSIXLY_... is set. diff --git a/tests/join/range-tests b/tests/join/range-tests deleted file mode 100644 index d13d472cf..000000000 --- a/tests/join/range-tests +++ /dev/null @@ -1,18 +0,0 @@ -[]*] # What about this?! valid -[:*096] # invalid: 096 isn't a valid octal number -a [:*0] # as many colons as string1 was long (not to be confused - # with a character class) -[:*] # ditto -[:*016] # 14 colons -[=]=] # valid: equivalence class containing ']' -[-a # valid, assuming `[' is before 'a' in collating sequence - -] # valid, assuming ` ' is before ']' in collating sequence ---] # valid, assuming `-' is before ']' in collating sequence -\0-\377 # valid -[\0-\377]# valid, (but brackets will be mapped to corresponding chars - # in other string) -abcde[:* # valid, but none of the characters is considered special -abc xyzdef # Should this (str2 longer than str1) evoke a warning? - # Probably so if we're only translating, but if also deleting or - # squeezing this makes sense. -abcdef : # Map abcdef all to `:', as if str2 had been [:*] |