Removed leftover test scripts from removed SWIG bindings.

This commit is contained in:
Ryan C. Gordon 2017-07-12 20:58:44 -04:00
parent efd71e08f6
commit a25569ba14
2 changed files with 0 additions and 40 deletions

View File

@ -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;

View File

@ -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)