From 728b075cb5e0df9c386f8377e0f6961e5ccc5143 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 16 Jun 2020 17:08:39 +0300 Subject: Add env script pseudo-builtin Also disable C++ recipe tests when cross-testing. --- tests/recipe/cxx/testscript | 269 ++++++++++++++++++++++---------------------- 1 file changed, 135 insertions(+), 134 deletions(-) (limited to 'tests/recipe') diff --git a/tests/recipe/cxx/testscript b/tests/recipe/cxx/testscript index 6601c0a..6b11c0f 100644 --- a/tests/recipe/cxx/testscript +++ b/tests/recipe/cxx/testscript @@ -1,168 +1,169 @@ # file : tests/recipe/cxx/testscript # license : MIT; see accompanying LICENSE file -# Ad hoc C++ recipes not supported in a statically-linked build system. +# Ad hoc C++ recipes not supported in a statically-linked build system. Also +# disable when cross-testing for the sake of simplicity. # -+$shared || exit - -+mkdir build -+cat <=build/bootstrap.build - project = test - amalgamation = - subprojects = - - using config - using test - EOI - -+cat <=build/root.build - EOI - -+cat <=buildfile - ./: - {{ c++ 1 - // Dummy recipe to trigger cleanup. - }} - EOI - -: update-clean -: +if (!$static && $test.target == $build.host) { - echo 'bar' >=bar; + +mkdir build + +cat <=build/bootstrap.build + project = test + amalgamation = + subprojects = + + using config + using test + EOI - cat <=buildfile; - foo: bar - % update clean - {{ c++ 1 - recipe - apply (action a, target& xt) const override - { - file& t (xt.as ()); + +cat <=build/root.build + EOI - t.derive_path (); - inject_fsdir (a, t); - match_prerequisite_members (a, t); + +cat <=buildfile + ./: + {{ c++ 1 + // Dummy recipe to trigger cleanup. + }} + EOI - switch (a) + : update-clean + : + { + echo 'bar' >=bar; + + cat <=buildfile; + foo: bar + % update clean + {{ c++ 1 + recipe + apply (action a, target& xt) const override { - case perform_update_id: return perform_update; - case perform_clean_id: return perform_clean_depdb; - default: assert (false); return noop_recipe; + file& t (xt.as ()); + + t.derive_path (); + inject_fsdir (a, t); + match_prerequisite_members (a, t); + + switch (a) + { + case perform_update_id: return perform_update; + case perform_clean_id: return perform_clean_depdb; + default: assert (false); return noop_recipe; + } } - } - static target_state - perform_update (action a, const target& xt) - { - const file& t (xt.as ()); - const path& tp (t.path ()); + static target_state + perform_update (action a, const target& xt) + { + const file& t (xt.as ()); + const path& tp (t.path ()); - timestamp mt (t.load_mtime ()); - auto pr (execute_prerequisites (a, t, mt)); + timestamp mt (t.load_mtime ()); + auto pr (execute_prerequisites (a, t, mt)); - bool update (!pr.first); - target_state r (update ? target_state::changed : *pr.first); + bool update (!pr.first); + target_state r (update ? target_state::changed : *pr.first); - const file& s (pr.second); - const path& sp (s.path ()); + const file& s (pr.second); + const path& sp (s.path ()); - depdb dd (tp + ".d"); - dd.expect (sp); + depdb dd (tp + ".d"); + dd.expect (sp); - if (dd.writing () || dd.mtime > mt) - update = true; + if (dd.writing () || dd.mtime > mt) + update = true; - dd.close (); + dd.close (); - if (!update) - return r; + if (!update) + return r; - if (verb == 1) - text << "cp " << t; - else if (verb >= 2) - text << "cp " << sp << ' ' << tp; + if (verb == 1) + text << "cp " << t; + else if (verb >= 2) + text << "cp " << sp << ' ' << tp; - cpfile (sp, tp); - return target_state::changed; - } - }} - EOI + cpfile (sp, tp); + return target_state::changed; + } + }} + EOI - $* 2>>~%EOE%; - %^(c\+\+|ld).*%+ - cp file{foo} - EOE + env BDEP_SYNC=0 -- $* 2>>~%EOE%; + %^(c\+\+|ld).*%+ + cp file{foo} + EOE - cat <<'bar'; + cat <<'bar'; - # While at it, make sure there is no rebuild. - # - $* 2>/'info: dir{./} is up to date'; + # While at it, make sure there is no rebuild. + # + env BDEP_SYNC=0 -- $* 2>/'info: dir{./} is up to date'; - $* clean 2>- -} + env BDEP_SYNC=0 -- $* clean 2>- + } -#\ -@@ TMP disabled: env BDEP_SYNC=0 -: test -: -{ - echo 'bar' >=bar; + : test + : + { + echo 'bar' >=bar; - cat <=buildfile; - foo: bar - {{ - cp $path($<) $path($>) - }} - % test - {{ c++ 1 -- + cat <=buildfile; + foo: bar + {{ + cp $path($<) $path($>) + }} + % test + {{ c++ 1 -- - #include + #include - -- + -- - recipe - apply (action a, target& t) const override - { - if (a.outer ()) + recipe + apply (action a, target& t) const override { - match_inner (a, t); - return execute_inner; + if (a.outer ()) + { + match_inner (a, t); + return execute_inner; + } + else + return perform_test; } - else - return perform_test; - } - - static target_state - perform_test (action, const target& xt) - { - const file& t (xt.as ()); - const path& tp (t.path ()); - - if (verb == 1) - text << "test " << t; - else if (verb >= 2) - text << "cat " << tp; - - ifdstream ifs (tp); - if (ifs.peek () != ifdstream::traits_type::eof ()) - std::cerr << ifs.rdbuf (); - ifs.close (); - - return target_state::changed; - } - }} - EOI - $* test 2>>~%EOE%; - %^(c\+\+|ld).*%+ - cp file{foo} - test file{foo} - bar - EOE + static target_state + perform_test (action, const target& xt) + { + const file& t (xt.as ()); + const path& tp (t.path ()); - $* clean 2>- -} -#\ + if (verb == 1) + text << "test " << t; + else if (verb >= 2) + text << "cat " << tp; + + ifdstream ifs (tp); + if (ifs.peek () != ifdstream::traits_type::eof ()) + std::cerr << ifs.rdbuf (); + ifs.close (); --$* clean 2>- # Clean recipe builds. + return target_state::changed; + } + }} + EOI + + env BDEP_SYNC=0 -- $* test 2>>~%EOE%; + %^(c\+\+|ld).*%+ + cp file{foo} + test file{foo} + bar + EOE + + env BDEP_SYNC=0 -- $* clean 2>- + } + + # Clean recipe builds if the testscript is enabled (see above for details). + # + -$* clean 2>- +} -- cgit v1.1