blob: 8e31c0696cf81bc3ea8a35e4b56aab578918dc31 [file] [log] [blame]
John Kessenichaab25142013-02-12 18:26:15 +00001#!/usr/bin/env bash
2
John Kessenich4586dbd2013-08-05 15:52:03 +00003TARGETDIR=localResults
4BASEDIR=baseResults
John Kessenichd18e2d82014-03-11 02:10:26 +00005EXE=../build/install/bin/glslangValidator
LoopDawg8004d362017-09-17 10:38:52 -06006REMAPEXE=../build/install/bin/spirv-remap
John Kessenichb38c9692015-05-15 19:01:17 +00007HASERROR=0
John Kessenich08d18242013-12-20 18:36:27 +00008mkdir -p localResults
John Kessenich69f4b512013-09-04 21:19:27 +00009
John Kessenichcf0206c2014-04-14 15:46:40 +000010if [ -a localtestlist ]
11 then
12 while read t; do
13 echo Running $t...
14 b=`basename $t`
15 $EXE -i -l $t > $TARGETDIR/$b.out
John Kessenichb38c9692015-05-15 19:01:17 +000016 diff -b $BASEDIR/$b.out $TARGETDIR/$b.out || HASERROR=1
John Kessenichcf0206c2014-04-14 15:46:40 +000017 done < localtestlist
18fi
19
johnkslang02ad18a2015-06-26 00:12:31 -060020rm -f comp.spv frag.spv geom.spv tesc.spv tese.spv vert.spv
John Kessenich593a3f72015-05-15 18:44:16 +000021
22#
John Kessenich31a51be2016-07-19 14:32:52 -060023# special tests
24#
25
26$EXE badMacroArgs.frag > $TARGETDIR/badMacroArgs.frag.out
27diff -b $BASEDIR/badMacroArgs.frag.out $TARGETDIR/badMacroArgs.frag.out || HASERROR=1
28
29#
John Kessenich11f9fc72013-11-07 01:06:34 +000030# reflection tests
31#
32echo Running reflection...
John Kessenicha86836e2016-07-09 14:50:57 -060033$EXE -l -q -C reflection.vert > $TARGETDIR/reflection.vert.out
John Kessenichb38c9692015-05-15 19:01:17 +000034diff -b $BASEDIR/reflection.vert.out $TARGETDIR/reflection.vert.out || HASERROR=1
baldurk19050692019-02-11 11:50:24 +000035$EXE -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks reflection.options.vert > $TARGETDIR/reflection.options.vert.out
baldurk15c37f72019-01-29 12:12:59 +000036diff -b $BASEDIR/reflection.options.vert.out $TARGETDIR/reflection.options.vert.out || HASERROR=1
baldurk0af5e3e2019-01-29 16:04:44 +000037$EXE -l -q -C reflection.frag > $TARGETDIR/reflection.frag.out
38diff -b $BASEDIR/reflection.frag.out $TARGETDIR/reflection.frag.out || HASERROR=1
baldurk19050692019-02-11 11:50:24 +000039$EXE -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks reflection.frag > $TARGETDIR/reflection.options.frag.out
baldurk0af5e3e2019-01-29 16:04:44 +000040diff -b $BASEDIR/reflection.options.frag.out $TARGETDIR/reflection.options.frag.out || HASERROR=1
baldurk19050692019-02-11 11:50:24 +000041$EXE -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks reflection.options.geom > $TARGETDIR/reflection.options.geom.out
42diff -b $BASEDIR/reflection.options.geom.out $TARGETDIR/reflection.options.geom.out || HASERROR=1
baldurka972e732019-01-30 15:34:02 +000043$EXE -l -q -C reflection.linked.vert reflection.linked.frag > $TARGETDIR/reflection.linked.out
44diff -b $BASEDIR/reflection.linked.out $TARGETDIR/reflection.linked.out || HASERROR=1
baldurk19050692019-02-11 11:50:24 +000045$EXE -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks reflection.linked.vert reflection.linked.frag > $TARGETDIR/reflection.linked.options.out
baldurka972e732019-01-30 15:34:02 +000046diff -b $BASEDIR/reflection.linked.options.out $TARGETDIR/reflection.linked.options.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -070047$EXE -D -Od -e flizv -l -q -C -V -Od hlsl.reflection.vert > $TARGETDIR/hlsl.reflection.vert.out
John Kessenich2572b192016-09-19 23:12:48 -060048diff -b $BASEDIR/hlsl.reflection.vert.out $TARGETDIR/hlsl.reflection.vert.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -070049$EXE -D -Od -e main -l -q -C -V -Od hlsl.reflection.binding.frag > $TARGETDIR/hlsl.reflection.binding.frag.out
steve-lunarg8ffc36a2016-09-21 14:19:40 -060050diff -b $BASEDIR/hlsl.reflection.binding.frag.out $TARGETDIR/hlsl.reflection.binding.frag.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -070051$EXE -D -Od -e main -l -q --hlsl-iomap --auto-map-bindings --stb 10 --sbb 20 --ssb 30 --suavb 40 --scb 50 -D -V -e main -Od hlsl.automap.frag > $TARGETDIR/hlsl.automap.frag.out
steve-lunargbe283552017-04-18 12:18:01 -060052diff -b $BASEDIR/hlsl.automap.frag.out $TARGETDIR/hlsl.automap.frag.out || HASERROR=1
John Kessenich11f9fc72013-11-07 01:06:34 +000053
54#
John Kessenich38f3b892013-09-06 19:52:57 +000055# multi-threaded test
56#
John Kessenich38f3b892013-09-06 19:52:57 +000057echo Comparing single thread to multithread for all tests in current directory...
John Kessenich23d27752019-07-28 02:12:10 -060058$EXE -i -C *.vert *.geom *.frag *.tesc *.tese *.comp > singleThread.out
59$EXE -i -C *.vert *.geom *.frag *.tesc *.tese *.comp -t > multiThread.out
John Kessenichb38c9692015-05-15 19:01:17 +000060diff singleThread.out multiThread.out || HASERROR=1
John Kessenich4b1a8902017-07-06 11:58:12 -060061if [ $HASERROR -eq 0 ]
62then
63 rm singleThread.out
64 rm multiThread.out
65fi
John Kessenichb38c9692015-05-15 19:01:17 +000066
steve-lunargf1e0c872016-10-31 15:13:43 -060067#
68# entry point renaming tests
69#
John Kessenich906cc212016-12-09 19:22:20 -070070echo Running entry-point renaming tests
John Kessenich640bd092018-08-09 14:15:00 -060071$EXE -i -H -V -D -Od --entry-point main_in_spv --ku --source-entrypoint main -Od hlsl.entry.rename.frag > $TARGETDIR/hlsl.entry.rename.frag.out
steve-lunargf1e0c872016-10-31 15:13:43 -060072diff -b $BASEDIR/hlsl.entry.rename.frag.out $TARGETDIR/hlsl.entry.rename.frag.out || HASERROR=1
73
John Kessenich906cc212016-12-09 19:22:20 -070074#
75# Testing ill-defined uncalled function
76#
77echo Running ill-defined uncalled function
John Kessenichb3cff2f2017-12-21 12:17:25 -070078$EXE -D -Od -e main -H -Od hlsl.deadFunctionMissingBody.vert > $TARGETDIR/hlsl.deadFunctionMissingBody.vert.out
John Kessenich906cc212016-12-09 19:22:20 -070079diff -b $BASEDIR/hlsl.deadFunctionMissingBody.vert.out $TARGETDIR/hlsl.deadFunctionMissingBody.vert.out || HASERROR=1
80
John Kessenich84ea15f2015-05-15 21:54:24 +000081if [ $HASERROR -eq 0 ]
82then
83 echo Tests Succeeded.
84else
85 echo Tests Failed.
86fi
87
John Kesseniche751bca2017-03-16 11:20:38 -060088#
John Kessenich2ead40f2018-04-17 17:44:11 -060089# Testing -S and compound suffixes
John Kesseniche751bca2017-03-16 11:20:38 -060090#
John Kessenich2ead40f2018-04-17 17:44:11 -060091echo Running explicit stage test and compound suffix tests
John Kessenichecbd0562018-05-10 10:22:13 -060092$EXE -Od -i -S vert nosuffix > $TARGETDIR/nosuffix.out
John Kesseniche751bca2017-03-16 11:20:38 -060093diff -b $BASEDIR/nosuffix.out $TARGETDIR/nosuffix.out || HASERROR=1
John Kessenichecbd0562018-05-10 10:22:13 -060094$EXE -Od -i compoundsuffix.vert.glsl > $TARGETDIR/compoundsuffix.vert.glsl
John Kessenich2ead40f2018-04-17 17:44:11 -060095diff -b $BASEDIR/compoundsuffix.vert.glsl $TARGETDIR/compoundsuffix.vert.glsl || HASERROR=1
John Kessenichecbd0562018-05-10 10:22:13 -060096$EXE -Od -e main -H compoundsuffix.frag.hlsl > $TARGETDIR/compoundsuffix.frag.hlsl
John Kessenich2ead40f2018-04-17 17:44:11 -060097diff -b $BASEDIR/compoundsuffix.frag.hlsl $TARGETDIR/compoundsuffix.frag.hlsl || HASERROR=1
John Kesseniche751bca2017-03-16 11:20:38 -060098
John Kessenich4f1403e2017-04-05 17:38:20 -060099#
100# Testing --hlsl-offsets
101#
102echo Running hlsl offsets
103$EXE -i --hlsl-offsets -H spv.hlslOffsets.vert > $TARGETDIR/spv.hlslOffsets.vert.out
104diff -b $BASEDIR/spv.hlslOffsets.vert.out $TARGETDIR/spv.hlslOffsets.vert.out || HASERROR=1
105
106echo Running hlsl offsets
John Kessenichb3cff2f2017-12-21 12:17:25 -0700107$EXE -i --hlsl-offsets -D -Od -e main -H -Od hlsl.hlslOffset.vert > $TARGETDIR/hlsl.hlslOffset.vert.out
John Kessenich4f1403e2017-04-05 17:38:20 -0600108diff -b $BASEDIR/hlsl.hlslOffset.vert.out $TARGETDIR/hlsl.hlslOffset.vert.out || HASERROR=1
109
110#
John Kessenich71facdf2017-05-17 18:28:19 -0600111# Testing --resource-set-binding
Hyangran Park36dc8292017-05-02 16:27:29 +0900112#
113echo Configuring HLSL descriptor set and binding number manually
John Kessenichb3cff2f2017-12-21 12:17:25 -0700114$EXE -V -D -Od -e main -H -Od hlsl.multiDescriptorSet.frag --rsb frag t0 0 0 t1 1 0 s0 0 1 s1 1 1 b0 2 0 b1 2 1 b2 2 2 > $TARGETDIR/hlsl.multiDescriptorSet.frag.out
John Kessenich121853f2017-05-31 17:11:16 -0600115diff -b $BASEDIR/hlsl.multiDescriptorSet.frag.out $TARGETDIR/hlsl.multiDescriptorSet.frag.out || HASERROR=1
Hyangran Park36dc8292017-05-02 16:27:29 +0900116
John Kessenichb3cff2f2017-12-21 12:17:25 -0700117$EXE -V -D -Od -e main -H -Od hlsl.explicitDescriptorSet.frag --hlsl-iomap --amb --ssb 10 --stb 20 --rsb 4 > $TARGETDIR/hlsl.explicitDescriptorSet.frag.out
LoopDawg52017192017-07-14 15:15:47 -0600118diff -b $BASEDIR/hlsl.explicitDescriptorSet.frag.out $TARGETDIR/hlsl.explicitDescriptorSet.frag.out || HASERROR=1
119
John Kessenichb3cff2f2017-12-21 12:17:25 -0700120$EXE -V -D -Od -e main -H -Od hlsl.explicitDescriptorSet.frag --hlsl-iomap --amb --ssb 10 --stb 20 --rsb frag 3 > $TARGETDIR/hlsl.explicitDescriptorSet-2.frag.out
LoopDawg52017192017-07-14 15:15:47 -0600121diff -b $BASEDIR/hlsl.explicitDescriptorSet-2.frag.out $TARGETDIR/hlsl.explicitDescriptorSet-2.frag.out || HASERROR=1
122
Hyangran Park36dc8292017-05-02 16:27:29 +0900123#
LoopDawg08a14422017-10-17 19:27:14 -0600124# Testing per-descriptor-set IO map shift
125#
126echo 'Testing per-descriptor-set IO map shift'
John Kessenich251901a2018-08-12 22:05:59 -0600127$EXE -e main --hlsl-iomap --ssb 10 1 15 2 --stb 20 --stb 25 2 --stb 70 6 --suavb 30 --suavb 40 2 --sub 50 6 -i -q -D -Od -V hlsl.shift.per-set.frag > $TARGETDIR/hlsl.shift.per-set.frag.out || HASERROR=1
LoopDawg08a14422017-10-17 19:27:14 -0600128diff -b $BASEDIR/hlsl.shift.per-set.frag.out $TARGETDIR/hlsl.shift.per-set.frag.out || HASERROR=1
129
130#
John Kessenich71facdf2017-05-17 18:28:19 -0600131# Testing location error
132#
133echo Testing SPV no location
134$EXE -V -C spv.noLocation.vert > $TARGETDIR/spv.noLocation.vert.out
John Kessenich121853f2017-05-31 17:11:16 -0600135diff -b $BASEDIR/spv.noLocation.vert.out $TARGETDIR/spv.noLocation.vert.out || HASERROR=1
John Kessenich82e95a32017-08-26 15:47:25 -0600136$EXE -G -H --aml spv.noBuiltInLoc.vert > $TARGETDIR/spv.noBuiltInLoc.vert.out
John Kessenich91e69c02017-07-14 05:52:31 -0600137diff -b $BASEDIR/spv.noBuiltInLoc.vert.out $TARGETDIR/spv.noBuiltInLoc.vert.out || HASERROR=1
John Kessenich82e95a32017-08-26 15:47:25 -0600138$EXE -G spv.looseUniformNoLoc.vert > $TARGETDIR/spv.looseUniformNoLoc.vert.out
139diff -b $BASEDIR/spv.looseUniformNoLoc.vert.out $TARGETDIR/spv.looseUniformNoLoc.vert.out || HASERROR=1
John Kessenich121853f2017-05-31 17:11:16 -0600140
141#
142# Testing debug information
143#
144echo Testing SPV Debug Information
John Kessenichc3404252018-08-23 15:29:08 -0600145$EXE -g --relaxed-errors --suppress-warnings --aml --amb --hlsl-offsets --nsf --spirv-val \
John Kessenich2a271162017-07-20 20:00:36 -0600146 -G -H spv.debugInfo.frag --rsb frag 3 > $TARGETDIR/spv.debugInfo.frag.out
John Kessenich121853f2017-05-31 17:11:16 -0600147diff -b $BASEDIR/spv.debugInfo.frag.out $TARGETDIR/spv.debugInfo.frag.out || HASERROR=1
John Kessenichdeec1932019-08-13 08:00:30 -0600148$EXE -g -Od --target-env vulkan1.1 --relaxed-errors --suppress-warnings --aml --amb --hlsl-offsets --nsf --spirv-val \
John Kessenich66011cb2018-03-06 16:12:04 -0700149 -G -H spv.debugInfo.frag --rsb frag 3 > $TARGETDIR/spv.debugInfo.1.1.frag.out
150diff -b $BASEDIR/spv.debugInfo.1.1.frag.out $TARGETDIR/spv.debugInfo.1.1.frag.out || HASERROR=1
John Kessenichc3404252018-08-23 15:29:08 -0600151$EXE -g -D -Od -e newMain -g --amb --aml --fua --hlsl-iomap --nsf --spirv-val --sib 1 --ssb 2 --sbb 3 --stb 4 --suavb 5 --sub 6 \
GregFcd1f1692017-09-21 18:40:22 -0600152 --sep origMain -H -Od spv.hlslDebugInfo.vert --rsb vert t0 0 0 > $TARGETDIR/spv.hlslDebugInfo.frag.out
John Kessenich2a271162017-07-20 20:00:36 -0600153diff -b $BASEDIR/spv.hlslDebugInfo.frag.out $TARGETDIR/spv.hlslDebugInfo.frag.out || HASERROR=1
John Kessenich71facdf2017-05-17 18:28:19 -0600154
155#
John Kessenich3494b4d2017-05-22 15:00:42 -0600156# Testing Includer
157#
158echo Testing Includer
John Kessenichb3cff2f2017-12-21 12:17:25 -0700159$EXE -D -Od -e main -H -Od ../Test/hlsl.include.vert > $TARGETDIR/hlsl.include.vert.out
John Kessenich3494b4d2017-05-22 15:00:42 -0600160diff -b $BASEDIR/hlsl.include.vert.out $TARGETDIR/hlsl.include.vert.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -0700161$EXE -D -Od -e main -H -Od hlsl.includeNegative.vert > $TARGETDIR/hlsl.includeNegative.vert.out
John Kessenich3494b4d2017-05-22 15:00:42 -0600162diff -b $BASEDIR/hlsl.includeNegative.vert.out $TARGETDIR/hlsl.includeNegative.vert.out || HASERROR=1
163$EXE -l -i include.vert > $TARGETDIR/include.vert.out
164diff -b $BASEDIR/include.vert.out $TARGETDIR/include.vert.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -0700165$EXE -D -Od -e main -H -Od -Iinc1/path1 -Iinc1/path2 hlsl.dashI.vert > $TARGETDIR/hlsl.dashI.vert.out
John Kessenich971a0a82017-06-07 15:06:58 -0600166diff -b $BASEDIR/hlsl.dashI.vert.out $TARGETDIR/hlsl.dashI.vert.out || HASERROR=1
greg-lunarg5d43c4a2018-12-07 17:36:33 -0700167$EXE -D -Od -e MainPs -H -Od -g hlsl.pp.line3.frag > $TARGETDIR/hlsl.pp.line3.frag.out
168diff -b $BASEDIR/hlsl.pp.line3.frag.out $TARGETDIR/hlsl.pp.line3.frag.out || HASERROR=1
John Kessenich3494b4d2017-05-22 15:00:42 -0600169
170#
John Kessenicha9313662017-06-15 10:40:49 -0600171# Testing -D and -U
172#
LoopDawg8004d362017-09-17 10:38:52 -0600173echo "Testing -D and -U"
John Kessenicha9313662017-06-15 10:40:49 -0600174$EXE -DUNDEFED -UIN_SHADER -DFOO=200 -i -l -UUNDEFED -DMUL=FOO*2 glsl.-D-U.frag > $TARGETDIR/glsl.-D-U.frag.out
175diff -b $BASEDIR/glsl.-D-U.frag.out $TARGETDIR/glsl.-D-U.frag.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -0700176$EXE -D -Od -e main -V -i -DUNDEFED -UIN_SHADER -DFOO=200 -UUNDEFED -Od hlsl.-D-U.frag > $TARGETDIR/hlsl.-D-U.frag.out
John Kessenicha9313662017-06-15 10:40:49 -0600177diff -b $BASEDIR/hlsl.-D-U.frag.out $TARGETDIR/hlsl.-D-U.frag.out || HASERROR=1
178
179#
John Kessenich6353d552017-06-23 11:11:09 -0600180# Test --client and --target-env
181#
LoopDawg8004d362017-09-17 10:38:52 -0600182echo "Testing --client and --target-env"
John Kessenich8717a5d2018-10-26 10:12:32 -0600183$EXE --client vulkan100 spv.targetVulkan.vert || HASERROR=1
184$EXE --client opengl100 spv.targetOpenGL.vert || HASERROR=1
185$EXE --target-env vulkan1.0 spv.targetVulkan.vert || HASERROR=1
186$EXE --target-env vulkan1.1 spv.targetVulkan.vert || HASERROR=1
187$EXE --target-env opengl spv.targetOpenGL.vert || HASERROR=1
188$EXE -V100 spv.targetVulkan.vert || HASERROR=1
189$EXE -G100 spv.targetOpenGL.vert || HASERROR=1
190$EXE --target-env spirv1.2 -V spv.targetVulkan.vert || HASERROR=1
John Kessenich6353d552017-06-23 11:11:09 -0600191
192#
John Kessenich9855bda2017-09-11 21:48:19 -0600193# Testing GLSL entry point rename
194#
LoopDawg8004d362017-09-17 10:38:52 -0600195echo "Testing GLSL entry point rename"
John Kessenich9855bda2017-09-11 21:48:19 -0600196$EXE -H -e foo --source-entrypoint main glsl.entryPointRename.vert > $TARGETDIR/glsl.entryPointRename.vert.out
197diff -b $BASEDIR/glsl.entryPointRename.vert.out $TARGETDIR/glsl.entryPointRename.vert.out || HASERROR=1
198$EXE -H -e foo --source-entrypoint bar glsl.entryPointRename.vert > $TARGETDIR/glsl.entryPointRename.vert.bad.out
199diff -b $BASEDIR/glsl.entryPointRename.vert.bad.out $TARGETDIR/glsl.entryPointRename.vert.bad.out || HASERROR=1
200$EXE -H -e foo --source-entrypoint main glsl.entryPointRename2.vert > $TARGETDIR/glsl.entryPointRename2.vert.out
201diff -b $BASEDIR/glsl.entryPointRename2.vert.out $TARGETDIR/glsl.entryPointRename2.vert.out || HASERROR=1
202
203#
LoopDawg8004d362017-09-17 10:38:52 -0600204# Testing remapper error handling
205#
206echo "Testing remapper error handling"
207$REMAPEXE --do-everything -i remap.invalid-spirv-1.spv -o $TARGETDIR > $TARGETDIR/remap.invalid-spirv-1.out && HASERROR=1
208diff -b $BASEDIR/remap.invalid-spirv-1.out $TARGETDIR/remap.invalid-spirv-1.out || HASERROR=1
209$REMAPEXE --do-everything -i remap.invalid-spirv-2.spv -o $TARGETDIR > $TARGETDIR/remap.invalid-spirv-2.out && HASERROR=1
210diff -b $BASEDIR/remap.invalid-spirv-2.out $TARGETDIR/remap.invalid-spirv-2.out || HASERROR=1
211
212#
LoopDawgb22c0692017-12-06 16:52:03 -0700213# Testing position Y inversion
214#
215echo "Testing position Y inversion"
John Kessenichb3cff2f2017-12-21 12:17:25 -0700216$EXE -H -e main -V -D -Od -H -i --iy hlsl.y-negate-1.vert > $TARGETDIR/hlsl.y-negate-1.vert.out
LoopDawgb22c0692017-12-06 16:52:03 -0700217diff -b $BASEDIR/hlsl.y-negate-1.vert.out $TARGETDIR/hlsl.y-negate-1.vert.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -0700218$EXE -H -e main -V -D -Od -H -i --invert-y hlsl.y-negate-2.vert > $TARGETDIR/hlsl.y-negate-2.vert.out
LoopDawgb22c0692017-12-06 16:52:03 -0700219diff -b $BASEDIR/hlsl.y-negate-2.vert.out $TARGETDIR/hlsl.y-negate-2.vert.out || HASERROR=1
John Kessenichb3cff2f2017-12-21 12:17:25 -0700220$EXE -H -e main -V -D -Od -H -i --invert-y hlsl.y-negate-3.vert > $TARGETDIR/hlsl.y-negate-3.vert.out
LoopDawgb22c0692017-12-06 16:52:03 -0700221diff -b $BASEDIR/hlsl.y-negate-3.vert.out $TARGETDIR/hlsl.y-negate-3.vert.out || HASERROR=1
222
223#
John Kessenich5d610ee2018-03-07 18:05:55 -0700224# Testing hlsl_functionality1
225#
John Kessenich086febc2018-10-25 12:43:02 -0600226echo "Testing hlsl_functionality1"
John Kessenich5d610ee2018-03-07 18:05:55 -0700227$EXE -H -e main -D -Od -fhlsl_functionality1 hlsl.structbuffer.incdec.frag > \
228 $TARGETDIR/hlsl.structbuffer.incdec.frag.hlslfun1.out
229diff -b $BASEDIR/hlsl.structbuffer.incdec.frag.hlslfun1.out $TARGETDIR/hlsl.structbuffer.incdec.frag.hlslfun1.out || HASERROR=1
John Kessenichf52b6382018-04-05 19:35:38 -0600230$EXE -H -e main -D -Od -fhlsl_functionality1 hlsl.noSemantic.functionality1.comp > \
231 $TARGETDIR/hlsl.noSemantic.functionality1.comp.out
232diff -b $BASEDIR/hlsl.noSemantic.functionality1.comp.out $TARGETDIR/hlsl.noSemantic.functionality1.comp.out || HASERROR=1
John Kessenich5d610ee2018-03-07 18:05:55 -0700233
234#
John Kessenich9cc81de2018-07-02 10:40:32 -0600235# Testing HLSL-specific PP feature expansion
236#
John Kessenich086febc2018-10-25 12:43:02 -0600237echo "Testing HLSL-specific PP feature expansion"
John Kessenich9cc81de2018-07-02 10:40:32 -0600238$EXE -D -E hlsl.pp.expand.frag > $TARGETDIR/hlsl.pp.expand.frag.out 2> $TARGETDIR/hlsl.pp.expand.frag.err
239diff -b $BASEDIR/hlsl.pp.expand.frag.out $TARGETDIR/hlsl.pp.expand.frag.out || HASERROR=1
240diff -b $BASEDIR/hlsl.pp.expand.frag.err $TARGETDIR/hlsl.pp.expand.frag.err || HASERROR=1
241
242#
John Kessenich605afc72019-06-17 23:33:09 -0600243# Test --nan-clamp
244#
245echo "Testing nan-clamp"
246$EXE --nan-clamp -H --aml --amb spv.400.frag > $TARGETDIR/spv.400.frag.nanclamp.out
247diff -b $BASEDIR/spv.400.frag.nanclamp.out $TARGETDIR/spv.400.frag.nanclamp.out || HASERROR=1
248
249#
John Kessenich4f1403e2017-04-05 17:38:20 -0600250# Final checking
251#
John Kesseniche751bca2017-03-16 11:20:38 -0600252if [ $HASERROR -eq 0 ]
253then
254 echo Tests Succeeded.
255else
256 echo Tests Failed.
257fi
258
John Kessenich4b1a8902017-07-06 11:58:12 -0600259rm -f comp.spv frag.spv geom.spv tesc.spv tese.spv vert.spv
260
John Kessenichb38c9692015-05-15 19:01:17 +0000261exit $HASERROR