File: test.ia-C-expr

package info (click to toggle)
shellia 5.3.2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 412 kB
  • sloc: sh: 3,235; makefile: 32
file content (66 lines) | stat: -rwxr-xr-x 1,353 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/sh
# vim: set filetype=sh :
#        file: test.ia-C-expr
#   copyright: Bernd Schumacher <bernd.schumacher@hpe.com> (2007-2018)
#     license: GNU General Public License, version 3
# description: test using check normally but disable it for some functions
#    see also: example.ia-C-expr

# The following tests are included:
# (1) Run this script without options
# (2) check logfile
# (3) Use ia_ignore intead of ia_stdout
# (4) check logfile

. ./tstlib

shell=""
while [ $# -ne 0 ]; do
  if [ "$1" = "-s" ]; then
    shell="$2"
    shift 2
  else
    echo "ERROR $0: unknown option <$1>" >&2
    exit 1
  fi
done

[ "$shell" ] && set -- "$@" -s "$shell"
[ "$shell" = "posh" ] && set -- "$@" -u "$(bug913718_unify)"

cmd="./example.ia-C-expr"
bug913718_cmd
ia_logfile="$(mktemp)"
export ia_logfile

rm -f $ia_logfile
check "(1) Run this script without options" "$@" "$cmd" ""

check "(2) check logfile" "$@" "cat $ia_logfile" "|example.ia-C-expr
||example.ia-C-expr/sub
||i:AC\"DC
||i:AC
||i:ACDC
||i:ACDC\$
||i:ACDC\$
||i:ACDC\$
||i:AC\DC
||i:AC\DC
||i:AC\DC
||i:AC\DC
||i:one
||i:two
||i:three
||i:one
||i:two
||i:one
||i:two
||i:three
||i:four"

cat example.ia-C-expr | sed "s/ia_stdout/ia_ignore/g" > example.ia-C-expr.tmp.ignore
chmod 755 example.ia-C-expr.tmp.ignore
cmd="./example.ia-C-expr.tmp.ignore"
bug913718_cmd

rm -f $ia_logfile