diff options
| author | Yong He <yonghe@outlook.com> | 2024-09-05 11:53:14 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-05 11:53:14 -0700 |
| commit | 879ee3d187e577189eba9aed7bc6326b740cb627 (patch) | |
| tree | 2317bf727e7958efacea24a3bcf6534a44c1827f /tests/diagnostics | |
| parent | a3b25ceb4021811d481c9c4a07a8d029329f01f3 (diff) | |
Support entrypoints defined in a namespace. (#5011)
* Support entrypoints defined in a namespace.
* Fix test.
Diffstat (limited to 'tests/diagnostics')
| -rw-r--r-- | tests/diagnostics/command-line/entry-point-redundant-stage.slang | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/diagnostics/command-line/entry-point-redundant-stage.slang b/tests/diagnostics/command-line/entry-point-redundant-stage.slang index 9507b1ea0..788d7e290 100644 --- a/tests/diagnostics/command-line/entry-point-redundant-stage.slang +++ b/tests/diagnostics/command-line/entry-point-redundant-stage.slang @@ -1,5 +1,7 @@ // entry-point-redundant-stage.slang -//DIAGNOSTIC_TEST:SIMPLE:-stage vertex -stage vertex +//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):-stage vertex -stage vertex -//DIAGNOSTIC_TEST:SIMPLE:-entry vsMain -stage vertex -stage vertex +//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):-entry vsMain -stage vertex -stage vertex + +// CHECK: was specified more than once |
