aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/074.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-31 07:03:56 +0900
committernsfisis <nsfisis@gmail.com>2025-08-15 10:06:21 +0900
commit6b1418634534bc3d7f32e63c88a186d030ab31f8 (patch)
tree1ab2bed5716c29bb04c12935cfc39b46bd5443fc /tests/074.sh
parentf53b6ff29c79b288792da24feb55b7ed9db2ba40 (diff)
downloadducc-6b1418634534bc3d7f32e63c88a186d030ab31f8.tar.gz
ducc-6b1418634534bc3d7f32e63c88a186d030ab31f8.tar.zst
ducc-6b1418634534bc3d7f32e63c88a186d030ab31f8.zip
feat: expand macro recursively
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