aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/074.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/074.sh')
-rw-r--r--tests/074.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/074.sh b/tests/074.sh
index 90b86c6..a4d42ea 100644
--- a/tests/074.sh
+++ b/tests/074.sh
@@ -2,6 +2,8 @@ set -e
cat <<'EOF' > expected
5
+6 6
+7 7
EOF
cat <<'EOF' > header.h
@@ -14,7 +16,7 @@ bash ../../test_diff.sh <<'EOF'
int printf();
int main() {
printf("%d\n", __LINE__);
- // printf("%d\n", B);
- // printf("%d\n", A);
+ printf("%d %d\n", B, B);
+ printf("%d %d\n", A, A);
}
EOF