~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to test/test_f77.sh.in

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#
19
19
# You should have received a copy of the GNU Library General Public License
20
20
# along with PLplot; if not, write to the Free Software
21
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
21
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22
22
 
23
23
# This is called from plplot-test.sh with $f77dir, $device, $dsuffix,
24
24
# and $options defined.
34
34
 
35
35
# Do non-standard example 16a because it illustrates plshade functionality
36
36
# with cmap1 (and also because the result looks nice.)
37
 
  $f77dir/x16af -dev $device -o x16af.$dsuffix $options
 
37
  $f77dir/x16af -dev $device -o ${OUTPUT_DIR}/x16af.$dsuffix $options
38
38
 
39
39
# Do the standard non-interactive examples.
40
 
# skip 14, 17, and 20 because they are interactive, and 14 and 20 not
41
 
# implemented.
42
 
# skip 19 because the fortran API is not available for maps.
 
40
# skip 14, 17, and 20 because they are interactive, and 20 not implemented.
43
41
# skip 21 because it delivers variable results depending on computer timing
44
42
# and load (and not implemented yet).
45
 
  for index in 01 02 03 04 05 06 07 08 09 10 11 12 13 15 16 18 22; do
46
 
    $f77dir/x${index}f -dev $device -o x${index}f.$dsuffix $options
 
43
  for index in 01 02 03 04 05 06 07 08 09 10 11 12 13 15 16 18 19 22 23; do
 
44
    $f77dir/x${index}f -dev $device -o ${OUTPUT_DIR}/x${index}f.$dsuffix $options
47
45
  done
48
46
else
49
47
# Fall back to this method if this fortran platform does not have
53
51
# with cmap1 (and also because the result looks nice.)
54
52
  $f77dir/x16af <<EOF >/dev/null
55
53
$device
56
 
x16af.$dsuffix
 
54
${OUTPUT_DIR}/x16af.$dsuffix
57
55
EOF
58
56
 
59
57
# Do the standard non-interactive examples.
60
 
# skip 14, 17, and 20 because they are interactive, and 14 and 20 not
61
 
# implemented.
62
 
# skip 19 because the fortran API is not available for maps.
 
58
# skip 14, 17, and 20 because they are interactive, and 20 not implemented.
63
59
# skip 21 because it delivers variable results depending on computer timing
64
60
# and load (and not implemented yet).
65
 
  for index in 01 02 03 04 05 06 07 08 09 10 11 12 13 15 16 18 22; do
 
61
  for index in 01 02 03 04 05 06 07 08 09 10 11 12 13 15 16 18 19 22 23; do
66
62
     $f77dir/x${index}f <<EOF >/dev/null
67
63
$device
68
 
x${index}f.$dsuffix
 
64
${OUTPUT_DIR}/x${index}f.$dsuffix
69
65
EOF
70
66
  done
71
67
fi