aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/074.sh
blob: 90b86c69fe3d36cd0c399f4d113ebee11e15ce5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set -e

cat <<'EOF' > expected
5
EOF

cat <<'EOF' > header.h
#define A __LINE__
EOF

bash ../../test_diff.sh <<'EOF'
#define B __LINE__
#include "header.h"
int printf();
int main() {
    printf("%d\n", __LINE__);
    // printf("%d\n", B);
    // printf("%d\n", A);
}
EOF