diff options
| author | Yong He <yonghe@outlook.com> | 2022-07-12 22:45:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-12 22:45:05 -0700 |
| commit | 049aac1b80143753b4b3449e529024bafe2250be (patch) | |
| tree | e6734ef240bf7016562a301009add1761caf06f6 /tests | |
| parent | a6775666c38ccaeb2a991921a08343afa09c659b (diff) | |
Support `class` types. (#2321)
* Support `class` types.
* Ignore class-keyword test
* Fix codereview comments and warnings.
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/cpu-program/class.slang | 23 | ||||
| -rw-r--r-- | tests/cpu-program/class.slang.expected | 6 | ||||
| -rw-r--r-- | tests/diagnostics/class-keyword.slang | 2 | ||||
| -rw-r--r-- | tests/disabled-tests.txt | 6 |
4 files changed, 36 insertions, 1 deletions
diff --git a/tests/cpu-program/class.slang b/tests/cpu-program/class.slang new file mode 100644 index 000000000..1fc35aed0 --- /dev/null +++ b/tests/cpu-program/class.slang @@ -0,0 +1,23 @@ +//TEST:EXECUTABLE: +__target_intrinsic(cpp, "printf(\"%s\\n\", ($0).getBuffer())") +void writeln(String text); + +class MyClass +{ + int intMember; + __init() + { + intMember = 0; + } + int method() + { + writeln("method"); + return intMember; + } +} + +public __extern_cpp int main() +{ + MyClass obj = new MyClass(); + return obj.method(); +}
\ No newline at end of file diff --git a/tests/cpu-program/class.slang.expected b/tests/cpu-program/class.slang.expected new file mode 100644 index 000000000..70274e060 --- /dev/null +++ b/tests/cpu-program/class.slang.expected @@ -0,0 +1,6 @@ +result code = 0 +standard error = { +} +standard output = { +method +} diff --git a/tests/diagnostics/class-keyword.slang b/tests/diagnostics/class-keyword.slang index c0495a614..c869496b9 100644 --- a/tests/diagnostics/class-keyword.slang +++ b/tests/diagnostics/class-keyword.slang @@ -1,4 +1,4 @@ -//DIAGNOSTIC_TEST:SIMPLE: +//DISABLED_TEST:DIAGNOSTIC_TEST:SIMPLE: // `class` keyword is a reserved keyword in this context, and wso should produce an error. // It can be used in the form of `enum class` diff --git a/tests/disabled-tests.txt b/tests/disabled-tests.txt index e588c153d..2fc5867b4 100644 --- a/tests/disabled-tests.txt +++ b/tests/disabled-tests.txt @@ -49,6 +49,12 @@ These tests are disabled due to other limitations of gfx layer. * compute/half-rw-texture-convert.slang * compute/half-rw-texture-simple.slang +### Temporary Language Limitation + +This test is disabled due to temporary compiler implementation limitations. +Should re-enable once the new checks for `class` usage is complete. + +* diagnostics/class-keyword.slang ### Uncategorized |
