Removed leftover test scripts from removed SWIG bindings.
This commit is contained in:
parent
efd71e08f6
commit
a25569ba14
|
@ -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;
|
||||
|
|
@ -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)
|
||||
|
Loading…
Reference in New Issue