diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2020-04-08 12:37:16 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-08 12:37:16 -0700 |
| commit | f38c082c7c576da5f82fcd952c2622d4f98fb3a2 (patch) | |
| tree | bdf5e1febeda25b42e310ef6da9ad02f97857b26 | |
| parent | a53f817623c917887926d3601cfa88906d6d52b9 (diff) | |
Fix expected output for dxc-error test. (#1312)
I'm not sure how this slipped in, but I know that I missed this when testing all my recent PRs because I end up havign a bunch of random not-ready-to-commit repro tests in my source tree which means I always get at least *some* test failures and have to scan them for the ones that are real. Somehow I have had a blind spot for this one.
| -rw-r--r-- | tests/cross-compile/dxc-error.hlsl.expected | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cross-compile/dxc-error.hlsl.expected b/tests/cross-compile/dxc-error.hlsl.expected index f9f565393..2028cd2f0 100644 --- a/tests/cross-compile/dxc-error.hlsl.expected +++ b/tests/cross-compile/dxc-error.hlsl.expected @@ -1,6 +1,6 @@ result code = -1 standard error = { -dxc: tests/cross-compile/dxc-error.hlsl:9:2: error: use of undeclared identifier 'gOutputBuffer' +dxc: tests/cross-compile/dxc-error.hlsl:8:2: error: use of undeclared identifier 'gOutputBuffer' gOutputBuffer[tid] = dispatchThreadID.x * 0.5f; ^ } |
