diff options
| author | Yong He <yonghe@outlook.com> | 2024-02-26 17:00:31 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-26 17:00:31 -0800 |
| commit | 39522159c245e32a99cfdc47f03236f7028f5c61 (patch) | |
| tree | 4ae93fb32f267f7caa5ce55a6a52aac9f1f33bdd /tests/ir | |
| parent | 1d8e93cd434f0c7acbb6db747b32c3a3720c5c2e (diff) | |
Allow default values for `extern` symbols. (#3632)
* Allow default values for `extern` symbols.
* Fix.
* Fix test.
Diffstat (limited to 'tests/ir')
| -rw-r--r-- | tests/ir/string-literal-hash-reflection.slang | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/ir/string-literal-hash-reflection.slang b/tests/ir/string-literal-hash-reflection.slang index a0a28876b..44a0f36e9 100644 --- a/tests/ir/string-literal-hash-reflection.slang +++ b/tests/ir/string-literal-hash-reflection.slang @@ -1,4 +1,7 @@ -//TEST:REFLECTION:-stage compute -entry computeMain -target hlsl -no-codegen +//TEST:REFLECTION(filecheck=CHECK):-stage compute -entry computeMain -target hlsl -no-codegen + +// CHECK-DAG: "Hello \t\n\0x083 World": -215446506 +// CHECK-DAG: "Try another": 900483678 import string_literal_module; |
