diff options
author | 2009-09-01 17:42:20 +0100 | |
---|---|---|
committer | 2009-09-01 17:43:52 +0100 | |
commit | ad761cd5e507e344ebc5f0c467b04f7d3dc729a3 (patch) | |
tree | 757c7ee5e72715d25d8127bc2b3369b2161fbe6d /paludis/set_file_TEST.cc | |
parent | 4197530f623ce9c9653b724baeda36efb08c3e63 (diff) | |
download | paludis-ad761cd5e507e344ebc5f0c467b04f7d3dc729a3.tar.gz paludis-ad761cd5e507e344ebc5f0c467b04f7d3dc729a3.tar.xz |
updso_serialised
Diffstat (limited to 'paludis/set_file_TEST.cc')
-rw-r--r-- | paludis/set_file_TEST.cc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/paludis/set_file_TEST.cc b/paludis/set_file_TEST.cc index dbc703f29..3f78674b9 100644 --- a/paludis/set_file_TEST.cc +++ b/paludis/set_file_TEST.cc @@ -70,7 +70,8 @@ namespace test_cases SetFile f(make_named_values<SetFileParams>( value_for<n::environment>(static_cast<Environment *>(0)), value_for<n::file_name>(FSEntry("set_file_TEST_dir/simple1")), - value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All())), + value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All(), + make_null_shared_ptr())), value_for<n::set_operator_mode>(sfsmo_natural), value_for<n::tag>(std::tr1::shared_ptr<DepTag>()), value_for<n::type>(sft_simple) @@ -137,7 +138,8 @@ namespace test_cases SetFile f(make_named_values<SetFileParams>( value_for<n::environment>(static_cast<Environment *>(0)), value_for<n::file_name>(FSEntry("set_file_TEST_dir/paludisconf1")), - value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All())), + value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All(), + make_null_shared_ptr())), value_for<n::set_operator_mode>(sfsmo_natural), value_for<n::tag>(std::tr1::shared_ptr<DepTag>()), value_for<n::type>(sft_paludis_conf) @@ -207,7 +209,8 @@ namespace test_cases SetFile f(make_named_values<SetFileParams>( value_for<n::environment>(static_cast<Environment *>(0)), value_for<n::file_name>(FSEntry("set_file_TEST_dir/override")), - value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All())), + value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All(), + make_null_shared_ptr())), value_for<n::set_operator_mode>(sfsmo_natural), value_for<n::tag>(std::tr1::shared_ptr<DepTag>()), value_for<n::type>(sft_paludis_conf) @@ -222,7 +225,8 @@ namespace test_cases SetFile fstar(make_named_values<SetFileParams>( value_for<n::environment>(static_cast<Environment *>(0)), value_for<n::file_name>(FSEntry("set_file_TEST_dir/override")), - value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All())), + value_for<n::parser>(std::tr1::bind(&parse_user_package_dep_spec, _1, &env, UserPackageDepSpecOptions(), filter::All(), + make_null_shared_ptr())), value_for<n::set_operator_mode>(sfsmo_star), value_for<n::tag>(std::tr1::shared_ptr<DepTag>()), value_for<n::type>(sft_paludis_conf) |