* tamuratak-shared_ptr_derived_2: Correct comment about const removal for shared_ptr Correct ordering of declarations in testcase Ruby shared_ptr on error code improvement in traits_as::as Add support for pointers to shared_ptr and null shared_ptr in Ruby containers Add shared_ptr non-overloaded upcast tests use forward declaration to treat the dependency of fragments [ruby] must not do a null check for VALUE. [ruby] add tests for shared_ptr of const Type. [ruby] For swig::from, use template specialization to convert shared_ptr<const T> to shared_ptr<T>. [ruby] edit comments [skip ci] [ruby] move template specialization to std_shared_ptr.i. [ruby] add tests for upcasting std::shared_ptr within std containers. [ruby] use template specialization for swig::asptr,asval functions on std:shared_ptr.
78 lines
1.7 KiB
Makefile
78 lines
1.7 KiB
Makefile
#######################################################################
|
|
# Makefile for ruby test-suite
|
|
#######################################################################
|
|
|
|
LANGUAGE = ruby
|
|
RUBY = @RUBY@
|
|
SCRIPTSUFFIX = _runme.rb
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
|
|
CPP_TEST_CASES = \
|
|
li_cstring \
|
|
li_factory \
|
|
li_std_functors \
|
|
li_std_list \
|
|
li_std_multimap \
|
|
li_std_pair_lang_object \
|
|
li_std_queue \
|
|
li_std_set \
|
|
li_std_stack \
|
|
primitive_types \
|
|
ruby_keywords \
|
|
ruby_minherit_shared_ptr \
|
|
ruby_naming \
|
|
ruby_track_objects \
|
|
ruby_track_objects_directors \
|
|
std_containers
|
|
# ruby_li_std_speed
|
|
# stl_new
|
|
|
|
CPP11_TEST_CASES = \
|
|
cpp11_hash_tables \
|
|
cpp11_shared_ptr_upcast \
|
|
cpp11_shared_ptr_const
|
|
|
|
C_TEST_CASES += \
|
|
li_cstring \
|
|
ruby_manual_proxy \
|
|
|
|
include $(srcdir)/../common.mk
|
|
|
|
# Overridden variables here
|
|
SWIGOPT += -w801 -noautorename -features autodoc=4
|
|
|
|
# Custom tests - tests with additional commandline options
|
|
ruby_naming.cpptest: SWIGOPT += -autorename
|
|
|
|
# Rules for the different types of tests
|
|
%.cpptest:
|
|
$(setup)
|
|
+$(swig_and_compile_cpp)
|
|
$(run_testcase)
|
|
|
|
%.ctest:
|
|
$(setup)
|
|
+$(swig_and_compile_c)
|
|
$(run_testcase)
|
|
|
|
%.multicpptest:
|
|
$(setup)
|
|
+$(swig_and_compile_multi_cpp)
|
|
$(run_testcase)
|
|
|
|
# Runs the testcase. A testcase is only run if
|
|
# a file is found which has _runme.rb appended after the testcase name.
|
|
run_testcase = \
|
|
if [ -f $(SCRIPTDIR)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then \
|
|
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH $(RUNTOOL) $(RUBY) $(RUBYFLAGS) -I$(srcdir):. $(SCRIPTDIR)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX); \
|
|
fi
|
|
|
|
# Clean
|
|
%.clean:
|
|
@exit 0
|
|
|
|
clean:
|
|
$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile SRCDIR='$(SRCDIR)' ruby_clean
|