diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-04-04 15:55:59 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-04-06 18:51:49 +0300 |
commit | 0fb8758d42047c9de9fef2bd34852e80d3ac9a99 (patch) | |
tree | 005262473fb522f96da96f1716fd8d7c44a2d501 /tests/pkg-checkout.testscript | |
parent | 5631205edf682629d1d34634025bdfa2191e6a4f (diff) |
Make use of project configuration variables for tests
Diffstat (limited to 'tests/pkg-checkout.testscript')
-rw-r--r-- | tests/pkg-checkout.testscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pkg-checkout.testscript b/tests/pkg-checkout.testscript index c4f3f28..398080e 100644 --- a/tests/pkg-checkout.testscript +++ b/tests/pkg-checkout.testscript @@ -14,7 +14,7 @@ posix = ($cxx.target.class != 'windows') # Prepare repositories used by tests if running in the local mode. # -+if ($remote != true) ++if! $remote # Create git repositories. # $git_extract $src/git/libbar.tar @@ -29,7 +29,7 @@ end : git-rep : -if ($git_supported != true) +if! $git_supported { # Skip git repository tests. # @@ -122,7 +122,7 @@ else : links : - if ($remote == true || $posix) + if ($remote || $posix) { $clone_root_cfg; |