~ubuntu-branches/ubuntu/trusty/pdl/trusty-proposed

« back to all changes in this revision

Viewing changes to t/callext.t

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-10-09 21:25:50 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051009212550-5uri1xdwwpswy3zu
Tags: 1:2.4.2-3ubuntu1
debian/control: added libgl1-mesa-dev and libglu1-mesa-dev to build deps
(GL/GLU Transition)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
use strict;
6
6
use Test;
7
 
BEGIN { plan tests => 1 }
 
7
BEGIN { plan tests => 1;
 
8
        if ($^O =~ /win32/i) {
 
9
            print "ok 1 # Skipped: callext is currently broken on win32\n";
 
10
            exit;
 
11
        }
 
12
}
8
13
use PDL;
9
14
use PDL::CallExt;
10
15