Przeglądaj źródła

Removed leftover test scripts from removed SWIG bindings.

Ryan C. Gordon 8 lat temu
rodzic
commit
a25569ba14
2 zmienionych plików z 0 dodań i 40 usunięć
  1. 0 21
      test/test_physfs.pl
  2. 0 19
      test/test_physfs.rb

+ 0 - 21
test/test_physfs.pl

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

+ 0 - 19
test/test_physfs.rb

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