aboutsummaryrefslogtreecommitdiff
path: root/tests/scripts.scm
blob: 390171095332cf8999b7757a02469519bdc50626 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.


(define-module (test-scripts)
  #:use-module (guix scripts)
  #:use-module ((guix scripts build)
                #:select (%standard-build-options))
  #:use-module (srfi srfi-64))

;; Test the (guix scripts) module.

(define-syntax-rule (with-environment-variable variable value body ...)
  "Run BODY with VARIABLE set to VALUE."
  (let ((orig (getenv variable)))
    (dynamic-wind
      (lambda ()
        (setenv variable value))
      (lambda ()
        body ...)
      (lambda ()
        (if orig
            (setenv variable orig)
            (unsetenv variable))))))


(test-begin "scripts")

(test-equal "parse-command-line"
  '((argument . "bar") (argument . "foo")
    (cores . 10)                                  ;takes precedence
    (substitutes? . #f) (keep-failed? . #t)
    (max-jobs . 77) (cores . 42))

  (with-environment-variable "GUIX_BUILD_OPTIONS" "-c 42 -M 77"
    (parse-command-line '("--keep-failed" "--no-substitutes"
                          "--cores=10" "foo" "bar")
                        %standard-build-options
                        (list '()))))

(test-equal "parse-command-line and --no options"
  '((argument . "foo")
    (substitutes? . #f))                          ;takes precedence

  (with-environment-variable "GUIX_BUILD_OPTIONS" "--no-substitutes"
    (parse-command-line '("foo")
                        %standard-build-options
                        (list '((substitutes? . #t))))))

(test-end "scripts")

;;; Local Variables:
;;; eval: (put 'with-environment-variable 'scheme-indent-function 2)
;;; End:
>2021-02-28gnu: rust-gdk-pixbuf-sys-0.10: Use HTTPS home page URI....* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-sys-0.10)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: rust-gdk-pixbuf-0.9: Use HTTPS home page URI....* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-0.9)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: rust-gdk-0.13: Use HTTPS home page URI....* gnu/packages/crates-gtk.scm (rust-gdk-0.13)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: rust-cairo-sys-rs-0.10: Use HTTPS home page URI....* gnu/packages/crates-gtk.scm (rust-cairo-sys-rs-0.10)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: rust-cairo-rs-0.9: Use HTTPS home page URI....* gnu/packages/crates-gtk.scm (rust-cairo-rs-0.9)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: rust-atk-sys-0.9: Use HTTPS home page URI....* gnu/packages/crates-gtk.scm (rust-atk-sys-0.9)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-02-28gnu: rust-atk-0.8: Use HTTPS home page URI....* gnu/packages/crates-gtk.scm (rust-atk-0.8)[home-page]: Use HTTPS URI. Nicolas Goaziou 2021-01-03gnu: rust-anyhow-1: Drop minor version from name....* gnu/packages/crates-io.scm (rust-anyhow-1): Drop minor version from name. (rust-codespan-reporting-0.9) (rust-swc-1) (rust-syn-1) (rust-thiserror-1) (rust-wasm-bindgen-webidl-0.2) (rust-svd-parser-0.9): Adjust accordingly. * gnu/packages/crates-gtk.scm (rust-glib-macros-0.10): Same. * gnu/packages/rust-apps.scm (fd): Same. * gnu/packages/sequoia.scm (sequoia): Same. Efraim Flashner 2020-12-05gnu: Add rust-gdk-0.13....* gnu/packages/crates-gtk.scm (rust-gdk-0.13): New variable. (rust-gdk-0.12): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-gtk-0.8....* gnu/packages/crates-gtk.scm (rust-gtk-0.8): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-gtk-sys-0.9....* gnu/packages/crates-gtk.scm (rust-gtk-sys-0.9): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-gdk-0.12....* gnu/packages/crates-gtk.scm (rust-gdk-0.12): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-gdk-sys-0.9....* gnu/packages/crates-gtk.scm (rust-gdk-sys-0.9): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-gdk-pixbuf-0.9....* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-0.9): New variable. (rust-gdk-pixbuf-0.8): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-gdk-pixbuf-sys-0.10....* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-sys-0.10): New variable. (rust-gdk-pixbuf-sys-0.9): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-gio-0.9....* gnu/packages/crates-gtk.scm (rust-gio-0.9): New variable. (rust-gio-0.8): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-gio-sys-0.10....* gnu/packages/crates-gtk.scm (rust-gio-sys-0.10): New variable. (rust-gio-sys-0.9): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-cairo-rs-0.9....* gnu/packages/crates-gtk.scm (rust-cairo-rs-0.9): New variable. (rust-cairo-rs-0.8): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-gdk-sys-0.10....* gnu/packages/crates-gtk.scm (rust-gdk-sys-0.10): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-cairo-sys-rs-0.10....* gnu/packages/crates-gtk.scm (rust-cairo-sys-rs-0.10): New variable. (rust-cairo-sys-rs-0.9): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-atk-0.8....* gnu/packages/crates-gtk.scm (rust-atk-0.8): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-atk-sys-0.9....* gnu/packages/crates-gtk.scm (rust-atk-sys-0.9): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-pango-0.9....* gnu/packages/crates-gtk.scm (rust-pango-0.9): New variable. (rust-pango-0.8): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-pango-sys-0.10....* gnu/packages/crates-gtk.scm (rust-pango-sys-0.10): New variable. (rust-pango-sys-0.9): inherit from above. Nicolas Goaziou 2020-12-05gnu: Add rust-glib-0.10....* gnu/packages/crates-gtk.scm (rust-glib-0.10): New variable. (rust-glib-0.8): inherit from the above. Nicolas Goaziou 2020-12-05gnu: Add rust-glib-macros-0.10....* gnu/packages/crates-gtk.scm (rust-glib-macros-0.10): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-gobject-sys-0.10....* gnu/packages/crates-gtk.scm (rust-gobject-sys-0.10): New variable. Nicolas Goaziou 2020-12-05gnu: Add rust-glib-sys-0.10....* gnu/packages/crates-gtk.scm (rust-glib-sys-0.10): New variable. (rust-glib-sys-0.9): inherit from above. Nicolas Goaziou 2020-12-04gnu: rust-gtk-rs-lgpl-docs-0: Update to 0.1.18....* gnu/packages/crates-gtk.scm (rust-gtk-rs-lgpl-docs-0): Update to 0.1.18. Nicolas Goaziou