diff options
author | Larry Wall <lwall@netlabs.com> | 1994-05-04 23:00:00 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1994-05-04 23:00:00 +0000 |
commit | 85e6fe838fb25b257a1b363debf8691c0992ef71 (patch) | |
tree | fd5340cd6c3bbabfc21d3b0cac48e7ab3a481ebf /t/lib/sdbm.t | |
parent | 2304df62caa7d9be70e8b8bcdb454e139c9c103d (diff) | |
download | perl-85e6fe838fb25b257a1b363debf8691c0992ef71.tar.gz |
perl 5.0 alpha 9perl-5a9
[editor's note: the sparc executables have not been included,
and emacs backup files have been removed]
Diffstat (limited to 't/lib/sdbm.t')
-rwxr-xr-x | t/lib/sdbm.t | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/t/lib/sdbm.t b/t/lib/sdbm.t index 79d95f315f..1304be29b2 100755 --- a/t/lib/sdbm.t +++ b/t/lib/sdbm.t @@ -2,7 +2,14 @@ # $RCSfile: dbm.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:43 $ -BEGIN { @INC = '../lib' } +BEGIN { + @INC = '../lib'; + require Config; import Config; + if ($Config{'extensions'} !~ /\bSDBM_File\b/) { + print STDERR "1..0\n"; + exit 0; + } +} require SDBM_File; print "1..12\n"; |