aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; 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 (tests offload)
  #:use-module (guix scripts offload)
  #:use-module (srfi srfi-64))


(test-begin "offload")

(define-syntax-rule (expose-internal-definitions s1 s2 ...)
  (begin
    (define s1 (@@ (guix scripts offload) s1))
    (define s2 (@@ (guix scripts offload) s2)) ...))

(expose-internal-definitions machine-matches?
                             build-requirements-system
                             build-requirements-features
                             build-machine-system
                             build-machine-systems
                             %build-machine-system
                             %build-machine-systems
                             build-machine-features)

(define (deprecated-build-machine system)
  (build-machine
   (name "m1")
   (user "dummy")
   (host-key "some-key")
   (system system)))

(define (new-build-machine systems)
  (build-machine
   (name "m1")
   (user "dummy")
   (host-key "some-key")
   (systems systems)))

;;; Test that deprecated build-machine definitions still work.
(test-assert (machine-matches? (deprecated-build-machine "i686-linux")
                               (build-requirements
                                (system "i686-linux"))))


(test-assert (machine-matches? (new-build-machine '("i686-linux"))
                               (build-requirements
                                (system "i686-linux"))))

;;; A build machine can act as more than one system type, thanks to QEMU
;;; emulation.
(test-assert (machine-matches? (new-build-machine '("armhf-linux"
                                                    "aarch64-linux"
                                                    "i686-linux"
                                                    "x86_64-linux"))
                               (build-requirements
                                (system "armhf-linux"))))
:47:04 +0200'>2023-05-31nls: Update translation keys for guix gc....Remco van 't Veer 2023-05-31nls: Update translations....Florian Pelz 2023-04-08nls: Make sure gnu/home/services/*.scm files are translatable....Ludovic Courtès 2023-03-16gnu: home: services: Add home-kodi-service-type....Jan (janneke) Nieuwenhuizen 2023-03-16gnu: home: services: Add home-znc-service-type....Jan (janneke) Nieuwenhuizen 2023-03-07nls: Fix more Texinfo Italiano....Julien Lepiller 2023-03-07nls: Update translations.Julien Lepiller 2023-02-26nls: Fix more Texinfo Italiano....Tobias Geerinckx-Rice 2023-02-26nls: Fix typo in Italian translation....Tobias Geerinckx-Rice 2023-02-03gnu: Remove key-mon.scm....Julien Lepiller 2023-01-05nls: Update translations....Julien Lepiller 2022-12-15doc: Use VM image file name consistently....Ludovic Courtès 2022-12-04nls: Update translations....Julien Lepiller 2022-11-20scripts: Use translations for guix.pot for service descriptions....pelzflorian (Florian Pelz) 2022-11-15installer: Report known-unsupported PCI devices....Ludovic Courtès 2022-11-04nls: Update translations....Julien Lepiller 2022-10-08po: Fix syntax error in French translation....Ricardo Wurmus 2022-10-08po: Fix syntax error in German translation....Ricardo Wurmus 2022-10-06nls: Update translations.Julien Lepiller 2022-10-06services: dhcp-client: Implement and use a configuration record....Alexey Abramov 2022-09-24services: Add samba service....Simon Streit 2022-09-04nls: Update translations.Julien Lepiller 2022-08-16ui: Describe package outputs....Liliana Marie Prikler 2022-08-11po: Add 'guix/read-print.scm'....Ludovic Courtès 2022-08-10nls: Update translations....Julien Lepiller 2022-07-09nls: Update translations....Julien Lepiller 2022-06-24services: configuration: Report the location of field type errors....Ludovic Courtès 2022-06-17home: Add OpenSSH service....Ludovic Courtès 2022-06-04nls: Update translations....Julien Lepiller 2022-06-04guix home: Add 'edit' sub-command....Ludovic Courtès 2022-06-04guix system: Add 'edit' sub-command....Ludovic Courtès 2022-05-01nls: Update translations....Julien Lepiller 2022-04-02nls: Update translations....Julien Lepiller 2022-04-02nls: Enforce translation thresholds....Julien Lepiller 2022-03-18graph: Factorize 'lookup-backend'....Ludovic Courtès 2022-03-01nls: Update translations....Julien Lepiller