summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs/missing-import-attribution.slang19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/bugs/missing-import-attribution.slang b/tests/bugs/missing-import-attribution.slang
new file mode 100644
index 000000000..8b5568660
--- /dev/null
+++ b/tests/bugs/missing-import-attribution.slang
@@ -0,0 +1,19 @@
+//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK): -target hlsl -entry computeMain -stage compute
+
+import this_file_does_not_exist;
+
+import empty;
+
+
+//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0], stride=16):out
+RWStructuredBuffer<int> outputBuffer;
+
+// CHECK-NOT: error 1: {{.*}} 'empty.slang'
+
+[numthreads(4, 4, 1)]
+void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
+{
+ int index = dispatchThreadID.x;
+ outputBuffer[index] = index;
+}
+