Denis Vlasenko | 3139ea7 | 2008-12-14 15:45:25 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # Copyright 2008 by Denys Vlasenko |
| 3 | # Licensed under GPL v2, see file LICENSE for details. |
| 4 | |
Mike Frysinger | caa7940 | 2009-11-04 18:41:22 -0500 | [diff] [blame] | 5 | . ./testing.sh |
Denis Vlasenko | 3139ea7 | 2008-12-14 15:45:25 +0000 | [diff] [blame] | 6 | |
| 7 | # testing "test name" "options" "expected result" "file input" "stdin" |
| 8 | |
| 9 | testing "expand" \ |
| 10 | "expand" \ |
| 11 | " 12345678 12345678\n" \ |
| 12 | "" \ |
| 13 | "\t12345678\t12345678\n" \ |
| 14 | |
Tomas Heinrich | d2b1ba6 | 2010-01-04 16:21:31 +0100 | [diff] [blame] | 15 | testing "expand with unicode characher 0x394" \ |
| 16 | "expand" \ |
| 17 | "Δ 12345ΔΔΔ 12345678\n" \ |
| 18 | "" \ |
| 19 | "Δ\t12345ΔΔΔ\t12345678\n" \ |
| 20 | |
Denis Vlasenko | 3139ea7 | 2008-12-14 15:45:25 +0000 | [diff] [blame] | 21 | exit $FAILCOUNT |