- 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
194 B
Ruby
20 lines
194 B
Ruby
#!/usr/bin/env ruby
|
|
#
|
|
# Put description here
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
require 'swig_assert'
|
|
|
|
# This is the import runtime testcase.
|
|
|
|
require 'imports_a'
|
|
require 'imports_b'
|
|
|
|
x = Imports_b::B.new
|
|
|
|
x.hello
|
|
|