cmvr_head/packages/erpc-1.14.0/erpcgen/test/test_include.yml
2025-12-30 15:44:41 +08:00

26 lines
325 B
YAML

---
name: python import
desc:
idl: |
@include("sys")
program test
interface foo {
bar(in string x) -> void
}
lang: py
test/common.py:
- import sys
---
name: C include
desc:
idl: |
@include("stdio.h")
program test;
interface foo {
bar(in string x) -> void
}
test_common.h:
- '#include "stdio.h"'