From 5cc92c56236d247d720f7a08bfa807b243179a10 Mon Sep 17 00:00:00 2001 From: David Neto Date: Mon, 5 Dec 2016 11:30:02 -0500 Subject: [PATCH] runtests should refer to test files in current directory Recently added entry point renaming file referred to test source file hlsl.entry.rename.frag via relative directory. Change it to be consistent with other tests: assume test sources are in the current directory. --- Test/baseResults/hlsl.entry.rename.frag.out | 2 +- Test/runtests | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/baseResults/hlsl.entry.rename.frag.out b/Test/baseResults/hlsl.entry.rename.frag.out index 0cfc925..b24cb7a 100644 --- a/Test/baseResults/hlsl.entry.rename.frag.out +++ b/Test/baseResults/hlsl.entry.rename.frag.out @@ -1,4 +1,4 @@ -../Test/hlsl.entry.rename.frag +hlsl.entry.rename.frag Shader version: 450 gl_FragCoord origin is upper left 0:? Sequence diff --git a/Test/runtests b/Test/runtests index 78c630c..fe16f37 100755 --- a/Test/runtests +++ b/Test/runtests @@ -49,7 +49,7 @@ diff singleThread.out multiThread.out || HASERROR=1 # # entry point renaming tests # -$EXE -i -H -V -D -e main_in_spv --source-entrypoint main ../Test/hlsl.entry.rename.frag > $TARGETDIR/hlsl.entry.rename.frag.out +$EXE -i -H -V -D -e main_in_spv --source-entrypoint main hlsl.entry.rename.frag > $TARGETDIR/hlsl.entry.rename.frag.out diff -b $BASEDIR/hlsl.entry.rename.frag.out $TARGETDIR/hlsl.entry.rename.frag.out || HASERROR=1 if [ $HASERROR -eq 0 ] -- 2.7.4