- source files and Makefiles need never be executable - scripts are run directly by their interpreters in the test suites, so also do not need to be executable
20 lines
230 B
Ruby
20 lines
230 B
Ruby
#!/usr/bin/env ruby
|
|
#
|
|
# Put script description here.
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
require 'swig_assert'
|
|
require 'add_link'
|
|
include Add_link
|
|
|
|
#
|
|
# This test currently fails due to swig
|
|
#
|
|
exit(0)
|
|
|
|
swig_assert( 'Foo.new' )
|
|
swig_assert( 'Foo.blah' )
|