;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Ludovic Courtès ;;; ;;; 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 . (define-module (test-bournish) #:use-module (guix build bournish) #:use-module (system base compile) #:use-module (system base language) #:use-module (srfi srfi-64)) (test-begin "bournish") (test-equal "single statement" '(chdir "/foo") (read-and-compile (open-input-string "cd /foo") #:from %bournish-language #:to 'scheme)) (test-equal "multiple statements" '(begin (chdir "/foo") (getcwd) ((@@ (guix build bournish) ls-command-implementation))) (read-and-compile (open-input-string "cd /foo\npwd\nls") #:from %bournish-language #:to 'scheme)) (test-end "bournish") fd317'>commitdiff
AgeCommit message (Expand)Author
2018-12-27gnu: kodi: Update to 18.0rc3....Efraim Flashner
2018-11-29gnu: kodi: Update to 18.0rc1....Efraim Flashner
2018-11-08gnu: kodi: Update to 18.0b5....Efraim Flashner
2018-11-08gnu: Add fstrcmp....Efraim Flashner
2018-11-07gnu: kodi: Fix typo....Efraim Flashner
2018-10-21gnu: kodi: Disable version checker....Efraim Flashner
2018-09-21gnu: kodi: Use INVOKE....Tobias Geerinckx-Rice
2018-09-21gnu: crossguid: Use INVOKE....Tobias Geerinckx-Rice
2018-07-16gnu: kodi: Build with mariadb....Efraim Flashner
2018-03-14Merge branch 'master' into core-updatesRicardo Wurmus
2018-03-11build-system/gnu: Add 'bootstrap' phase....Ludovic Courtès
2018-02-25gnu: kodi: Update to 18.0_alpha-8.ec16dbc....Marius Bakke
2017-11-20gnu: kodi: Update snapshot....Marius Bakke
2017-11-03gnu: Add kodi-cli....Oleg Pykhalov
2017-06-20gnu: Move contents of zip module into compression module....Arun Isaac