diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-17 05:00:37 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-17 05:00:37 +0900 |
| commit | 1a8e094e36a412be89610320b70dee9d1a7b3c2c (patch) | |
| tree | 98d4b7a369b8c532ac9fce1dc48fcb487a27030f /tests | |
| parent | edef854dbea89279a1d868ea6f1eaa9220bd0b89 (diff) | |
| download | ducc-1a8e094e36a412be89610320b70dee9d1a7b3c2c.tar.gz ducc-1a8e094e36a412be89610320b70dee9d1a7b3c2c.tar.zst ducc-1a8e094e36a412be89610320b70dee9d1a7b3c2c.zip | |
refactor: tokenize preprocessor hash and directive name as one token
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/083.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/083.sh b/tests/083.sh index 1d95dae..7502cf3 100644 --- a/tests/083.sh +++ b/tests/083.sh @@ -1,7 +1,7 @@ set -e cat <<'EOF' > expected -main.c:1: unknown preprocessor directive (foo (<identifier>)) +main.c:1: unknown preprocessor directive (foo) EOF bash ../../test_compile_error.sh <<'EOF' @@ -11,7 +11,7 @@ int main() {} EOF cat <<'EOF' > expected -main.c:1: unknown preprocessor directive (bar (<identifier>)) +main.c:1: unknown preprocessor directive (bar) EOF bash ../../test_compile_error.sh <<'EOF' |
