diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 08:07:49 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 08:07:49 -0700 |
commit | bdd2a4913eaa0f1d3721979058b53e181832cfa8 (patch) | |
tree | 4352e0dda211a865b3dc8d60e1a31256486b3f5d /testcases | |
parent | e8773eaa71ecbe1a44f8d88583735c596dbfd99e (diff) | |
download | cppawk-bdd2a4913eaa0f1d3721979058b53e181832cfa8.tar.gz cppawk-bdd2a4913eaa0f1d3721979058b53e181832cfa8.tar.bz2 cppawk-bdd2a4913eaa0f1d3721979058b53e181832cfa8.zip |
Fix missing: pass -I to preprocessor.
Diffstat (limited to 'testcases')
-rw-r--r-- | testcases | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -69,3 +69,17 @@ ERR 1 1 2 +-- +14: +./cppawk -Itestdir ' +#include "header.cwh" +BEGIN { print max(42, 73) }' +: +73 +-- +15: +./cppawk -iquotetestdir ' +#include "header.cwh" +BEGIN { print max(42, 73) }' +: +73 |