diff --git a/test/test_physfs.pl b/test/test_physfs.pl deleted file mode 100755 index a7cdeec..0000000 --- a/test/test_physfs.pl +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/perl -w - -use strict; -use warnings; -use physfs; - -print "testing PhysicsFS Perl bindings...\n"; - -print "init...\n"; -physfs::init("$0") or die("physfs::init('$0'): ".physfs::getLastError()."\n"); - -print "user dir: ", physfs::getUserDir(), "\n"; -print "base dir: ", physfs::getBaseDir(), "\n"; -print "pref dir: ", physfs::getPrefDir("icculus.org", "test_physfs"), "\n"; - -print "deinit...\n"; -physfs::deinit(); - -print "done!\n"; -exit 0; - diff --git a/test/test_physfs.rb b/test/test_physfs.rb deleted file mode 100755 index 9632c4b..0000000 --- a/test/test_physfs.rb +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/ruby - -require 'physfs' - -puts "testing PhysicsFS Ruby bindings..." -puts "init..." - -Physfs.init($0) - -puts "user dir: " + Physfs.getUserDir() -puts "base dir: " + Physfs.getBaseDir() -puts "pref dir: " + Physfs.getPrefDir("icculus.org", "test_physfs") - -puts "deinit..." -Physfs.deinit() - -puts "done!" -exit(0) -