]> git.lyx.org Git - features.git/commitdiff
add ChangeLog and fix for builddir != srcdir
authorLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 25 Feb 2005 05:08:08 +0000 (05:08 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 25 Feb 2005 05:08:08 +0000 (05:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9680 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/tests/ChangeLog [new file with mode: 0644]
src/support/tests/Makefile.am
src/support/tests/test_convert
src/support/tests/test_lstrings

diff --git a/src/support/tests/ChangeLog b/src/support/tests/ChangeLog
new file mode 100644 (file)
index 0000000..a4d2257
--- /dev/null
@@ -0,0 +1,6 @@
+2005-02-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * Makefile.am (regfiles): fix for builddir != srcdir
+
+       * test_lstrings (regfile): fix for builddir != srcdir
+       * test_convert (reffile): ditto
index fb77a02c1a6b49a1b9b77403f4db8a1b59d49e51..62f6bb8ff2e4f3e7f232ddf4fc05eb8fbfd51ecb 100644 (file)
@@ -1,5 +1,7 @@
 include $(top_srcdir)/config/common.am
 
+EXTRA_DIST = test_convert test_lstrings regfiles
+
 TESTS = \
        test_convert \
        test_lstrings
@@ -22,5 +24,5 @@ lstrings_SOURCES = \
 
 regfiles: ${check_PROGRAMS}
        for all in ${check_PROGRAMS} ; do \
-               ./$$all > regfiles/$$all ; \
+               ./$$all > ${srcdir}/regfiles/$$all ; \
        done
index bce7764f5cae33c76f57be83544f2311f254b7c1..bbcafe42b922edc9751188abbadbb27b0b3b5ae9 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-regfile=`cat regfiles/convert`
+regfile=`cat ${srcdir}/regfiles/convert`
 output=`./convert`
 
 test "$regfile" = "$output"
index 624fdb0e11fcfbce32bc6206eb54528545dcd8e4..3d4adfdb1ef5410c246ffc9b39449f872506f244 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-regfile=`cat regfiles/lstrings`
+regfile=`cat ${srcdir}/regfiles/lstrings`
 output=`./lstrings`
 
 test "$regfile" = "$output"