[spice-streaming-agent v2] tests: Fix hexdump.sh when builddir != srcdir

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This script currently expects the reference file and the generated file
to both be in the same directory, which is not the case when doing a
build with builddir != srcdir (or when running make distcheck)

Signed-off-by: Christophe Fergeau <cfergeau@xxxxxxxxxx>
Acked-by: Frediano Ziglio <fziglio@xxxxxxxxxx>
---
 src/unittests/hexdump.sh | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/unittests/hexdump.sh b/src/unittests/hexdump.sh
index 602b501..691b264 100755
--- a/src/unittests/hexdump.sh
+++ b/src/unittests/hexdump.sh
@@ -2,14 +2,17 @@
 
 set -e
 
+SRCDIR=`dirname $0`
+
 # avoid weird language handling which could affect
 # ascii part of the dump
 export LANG=C
 
-for f in hexdump*.in; do
-    out=`echo $f | sed 's,\.in,.out,'`
-    rm -f $out.test
-    ./test-hexdump $out.test < $f
-    cmp $out.test $out
-    rm -f $out.test
+for f in "$SRCDIR"/hexdump*.in; do
+    reference=`echo $f | sed 's,\.in,.out,'`
+    out=`basename $reference`.test
+    rm -f $out
+    ./test-hexdump $out < $f
+    cmp $out $reference
+    rm -f $out
 done
-- 
2.13.6

_______________________________________________
Spice-devel mailing list
Spice-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/spice-devel




[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]     [Monitors]