>> "SIGOURE" == SIGOURE Benoit
<sigoure.benoit(a)lrde.epita.fr> writes:
Index: tests/test-parse-xrm.sh.in
--- tests/test-parse-xrm.sh.in (revision 65)
+++ tests/test-parse-xrm.sh.in (working copy)
@@ -18,7 +18,7 @@
"@top_builddir@/src/tools/parse-xrm" -i "$file" -o /dev/null
rv=$?
test_cnt=$((test_cnt + 1))
- if [ $? -eq 0 ]; then
+ if [ $rv -eq 0 ]; then
echo 'OK, no ambiguities found'
test_pass=$((test_pass + 1))
else
Index: tests/test-parse-xpctl.sh.in
--- tests/test-parse-xpctl.sh.in (revision 65)
+++ tests/test-parse-xpctl.sh.in (working copy)
@@ -18,7 +18,7 @@
"@top_builddir@/src/tools/parse-xpctl" -i "$file" -o /dev/null
rv=$?
test_cnt=$((test_cnt + 1))
- if [ $? -eq 0 ]; then
+ if [ $rv -eq 0 ]; then
echo 'OK, no ambiguities found'
test_pass=$((test_pass + 1))
else
I
I let you guess what my thoughts are... :)