From f8fdb500cc705e2b8b4a74166ceb2c6d8cee3fd3 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 4 Sep 2018 14:02:11 +0300 Subject: Rename .test/test{} to .testscript/testscript{} --- tests/pkg-update.test | 139 -------------------------------------------------- 1 file changed, 139 deletions(-) delete mode 100644 tests/pkg-update.test (limited to 'tests/pkg-update.test') diff --git a/tests/pkg-update.test b/tests/pkg-update.test deleted file mode 100644 index 73e1221..0000000 --- a/tests/pkg-update.test +++ /dev/null @@ -1,139 +0,0 @@ -# file : tests/pkg-update.test -# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd -# license : MIT; see accompanying LICENSE file - -.include common.test auth.test config.test remote.test - -# Source repository: -# -# pkg-update -# |-- hello -# | |-- libhello-1.0.0.tar.gz -# | `-- repositories.manifest -# `-- libhello-1.0.0 -# |-- build -# | |-- bootstrap.build -# | |-- export.build -# | `-- root.build -# |-- buildfile -# |-- hello -# | |-- buildfile -# | |-- export -# | |-- hello -# | `-- hello.cxx -# |-- INSTALL -# |-- manifest -# |-- tests -# | |-- build -# | | |-- bootstrap.build -# | | `-- root.build -# | |-- buildfile -# | `-- test -# | |-- buildfile -# | |-- driver.cxx -# | `-- test.out -# `-- version - -# Prepare repositories used by tests if running in the local mode. -# -+if ($remote != true) - rep_create += 2>! - - # Create the signed 'hello' repository. - # - cp -r $src/hello $out/hello - cat <<<$cert_manifest >+$out/hello/repositories.manifest - - $rep_create --key $key $out/hello &$out/hello/packages.manifest \ - &$out/hello/signature.manifest -end - -pkg_configure += -d cfg "config.cxx=$config.cxx" 2>! -pkg_disfigure += -d cfg -pkg_fetch += -d cfg 2>! -pkg_purge += -d cfg -pkg_unpack += -d cfg 2>! -rep_add += -d cfg 2>! -rep_fetch += -d cfg --auth all 2>! - -# Sometimes we need to run underlying build update operation with -j 1 options -# to have an output that we can match reliably. -# -j1 = --build-option -j --build-option 1 - -: no-name -: -$clone_cfg; -$* 2>>EOE != 0 - error: package name argument expected - info: run 'bpkg help pkg-update' for more information - EOE - -: fetched -: -{ - +$clone_cfg - +$rep_add $rep/hello - +$rep_fetch --trust $cert_fp &cfg/.bpkg/certs/** - - : no-such-package - : - $clone_cfg; - $* libhello 2>>/EOE != 0 - error: package libhello does not exist in configuration cfg/ - EOE - - : wrong-state - : - { - $clone_cfg && $pkg_fetch libhello/1.0.0; - - $* libhello 2>>EOE != 0; - error: package libhello is fetched - info: expected it to be configured - EOE - - $pkg_purge libhello 2>'purged libhello/1.0.0' - } - - : src-eq-out - : - { - $clone_cfg; - $pkg_fetch libhello/1.0.0 && $pkg_unpack libhello; - $pkg_configure libhello; - - $* $j1 libhello 2>>~%EOE%; - %(c\+\+|ar|ld) .+%{6} - updated libhello/1.0.0 - EOE - - $* libhello 2>>~%EOE%; - %info: .+ is up to date% - updated libhello/1.0.0 - EOE - - $pkg_disfigure libhello 2>'disfigured libhello/1.0.0'; - $pkg_purge libhello 2>'purged libhello/1.0.0' - } -} - -: src-ne-out -: -{ - $clone_cfg; - $pkg_unpack -e $src/libhello-1.0.0 && $pkg_configure libhello; - - $* $j1 libhello 2>>~%EOE%; - %(mkdir|c\+\+|ar|ld) .+%{8} - updated libhello/1.0.0 - EOE - - $* libhello 2>>~%EOE%; - %info: .+ is up to date% - updated libhello/1.0.0 - EOE - - $pkg_disfigure libhello 2>'disfigured libhello/1.0.0'; - $pkg_purge libhello 2>'purged libhello/1.0.0' -} -- cgit v1.1