aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/predefined_macros.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-01-24 01:43:01 +0900
committernsfisis <nsfisis@gmail.com>2026-01-24 01:43:01 +0900
commitc780cbb6acd0e0526f2d305138190392bdc8cdd7 (patch)
treedf1edba6eb5778a00e1f4c8a5051414d5bb37e71 /tests/predefined_macros.sh
parentd179d944c0633d3aa2420009335791b115f67052 (diff)
downloadducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.tar.gz
ducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.tar.zst
ducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.zip
refactor: organize test files
Diffstat (limited to 'tests/predefined_macros.sh')
-rw-r--r--tests/predefined_macros.sh54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/predefined_macros.sh b/tests/predefined_macros.sh
deleted file mode 100644
index ada2fdd..0000000
--- a/tests/predefined_macros.sh
+++ /dev/null
@@ -1,54 +0,0 @@
-cat <<'EOF' > expected
-1
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-int main() {
- printf("%d\n", __ducc__);
- return 0;
-}
-EOF
-
-cat <<'EOF' > expected
-main.c
-main.c
-main.c
-EOF
-
-cat <<'EOF' > header.h
-#define A __FILE__
-EOF
-
-test_diff <<'EOF'
-#define B __FILE__
-#include "header.h"
-int printf();
-int main() {
- printf("%s\n", __FILE__);
- printf("%s\n", B);
- printf("%s\n", A);
-}
-EOF
-
-cat <<'EOF' > expected
-5
-6 6
-7 7
-EOF
-
-cat <<'EOF' > header.h
-#define A __LINE__
-EOF
-
-test_diff <<'EOF'
-#define B __LINE__
-#include "header.h"
-int printf();
-int main() {
- printf("%d\n", __LINE__);
- printf("%d %d\n", B, B);
- printf("%d %d\n", A, A);
-}
-EOF