Description: Run test/example suite on end-user machine.
 The source package contains test scripts and data which are supposed
 to be run from the source directory. This patch modifies these
 scripts so that the end-user can run them from his home directory
 using an installed instance of MiRA. See README.Debian, which is
 there to document these examples.
Author: Thibaut Paumard <paumard@users.sourceforge.net>
Forwarded: No
Last-Update: 2010-01-30

--- a/test/mira-demo.i
+++ b/test/mira-demo.i
@@ -8,14 +8,14 @@
 
 if (is_void(MIRA_HOME)) {
   /* Load MiRA software. */
-  include, "../src/mira.i";
+  include, "mira.i";
 }
 
 /* Load OI-FITS data file ('mh1' will be our MIRA instance for this
    data file; if there are several spectral channels in the data file,
    you must choose one with keyword EFF_WAVE or choose a spectral
    range with keywords EFF_WAVE and EFF_BAND): */
-mh1 = mira_new(MIRA_HOME+"../data/data1.oifits");
+mh1 = mira_new("data1.oifits");
 
 /* Configure data instance for image reconstruction parameters (DIM is
    the number of pixels along the width and height of the restored
--- a/test/mira-test1.i
+++ b/test/mira-test1.i
@@ -8,14 +8,14 @@
 
 if (is_void(MIRA_HOME)) {
   /* Load MiRA software. */
-  include, "../src/mira.i";
+  include, "mira.i";
 }
 
 /* Load OI-FITS data file ('db1' will be our MiRA instance for this
    data file; if there are several spectral channels in the data file,
    you must choose one with keyword EFF_WAVE or choose a spectral
    range with keywords EFF_WAVE and EFF_BAND): */
-db1 = mira_new(MIRA_HOME+"../data/data1.oifits");
+db1 = mira_new("data1.oifits");
 
 /* Configure data instance for image reconstruction parameters (DIM is
    the number of pixels along the width and height of the restored
--- a/test/mira-test2.i
+++ b/test/mira-test2.i
@@ -8,14 +8,14 @@
 
 if (is_void(MIRA_HOME)) {
   /* Load MiRA software. */
-  include, "../src/mira.i", 1;
+  include, "mira.i", 1;
 }
 
 /* Load OI-FITS data file ('db2' will be our MiRA instance for this data
    file; if there are several spectral channels in the data file, you
    must choose one with keyword EFF_WAVE or choose a spectral range
    with keywords EFF_WAVE and EFF_BAND): */
-db2 = mira_new(MIRA_HOME+"../data/data2.oifits");
+db2 = mira_new("data2.oifits");
 
 /* Configure data instance for image reconstruction parameters (DIM is
    the number of pixels along the width and height of the restored
