File: __run_all.sh

package info (click to toggle)
re2c 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 50,052 kB
  • sloc: cpp: 32,477; ml: 8,279; sh: 5,265; makefile: 968; haskell: 612; python: 428; ansic: 227; javascript: 111; java: 3
file content (43 lines) | stat: -rwxr-xr-x 1,442 bytes parent folder | download | duplicates (2)
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
root_dir=$(pwd)

for f in $(find -name '*.re'); do
    grep -q 'main' $f || continue # skip incomplete tests

    cd $(dirname $f)

    jfile="$(basename ${f%.re}.java)"
    jtest="example.java"

    cat "$jfile" \
        | egrep -v 'warning: rule .*matches empty string \[-Wmatch-empty-string\]' \
        | egrep -v 'warning: tag .* degree of nondeterminism \[-Wnondeterministic-tags\]' \
        > "$jtest"

    # If the autogenerated message appears more than once in the file, then
    # it must have autogenerated header appended at the end. Cut it off.
    msg='Generated by re2c'
    if [ $(grep -c "$msg" "$jtest") -gt 1 ]; then
        # Get the line of the second message occurrence.
        l=$(grep -n "$msg" "$jtest" | tail -n +2 | cut -d : -f 1)
        # Cut off everything past that line.
        head -n $l "$jtest" > "$jtest".mod && mv "$jtest".mod "$jtest"
    fi

    echo "$f"
    # header test requires special handling to satisfy Java class hierarchy
    if $(grep -q -- '--header' "$jtest"); then
        ln -s "$jtest" Header.java \
            && ln -s state.java lexer/State.java \
            && javac lexer/State.java \
            && java -cp .. -ea Header.java \
            || { echo "*** error ***"; exit 1; }
        rm Header.java lexer/State.java lexer/State.class
    else
        java -ea "$jtest" || { echo "*** error ***"; exit 1; }
    fi

    rm -f "$jtest"
    cd $root_dir
done

echo "All good."