blob: 2f4816893c3724f78a1e9f918f1974f3b440bc16 [file] [log] [blame]
Denis Vlasenkobb130792008-07-15 06:45:14 +00001#!/bin/sh
2
3# Copyright 2008 by Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02004# Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenkobb130792008-07-15 06:45:14 +00005
Mike Frysingercaa79402009-11-04 18:41:22 -05006. ./testing.sh
Denis Vlasenkobb130792008-07-15 06:45:14 +00007
8# testing "description" "command" "result" "infile" "stdin"
9
10testing "comm test 1" "comm input -" "\t123\n""456\n""abc\n""\tdef\n" "456\nabc\n" "123\ndef\n"
11testing "comm test 2" "comm - input" "123\n""\t456\n""\tabc\n""def\n" "456\nabc\n" "123\ndef\n"
12testing "comm test 3" "comm input -" "abc\n""\tdef\n""xyz\n" "abc\nxyz\n" "def\n"
13testing "comm test 4" "comm - input" "\tabc\n""def\n""\txyz\n" "abc\nxyz\n" "def\n"
14testing "comm test 5" "comm input -" "123\n""abc\n""\tdef\n" "123\nabc\n" "def\n"
15testing "comm test 6" "comm - input" "\t123\n""\tabc\n""def\n" "123\nabc\n" "def\n"
16testing "comm unterminated line 1" "comm input -" "abc\n""\tdef\n" "abc" "def"
17testing "comm unterminated line 2" "comm - input" "\tabc\n""def\n" "abc" "def"
18
19exit $FAILCOUNT