From a2daa155e82244d2e58c9e0abaea43c614b7a403 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Wed, 3 Aug 2022 22:43:40 +0900 Subject: [PATCH] comment out failing chicken tests --- tests/snow/snow-tests.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/tests/snow/snow-tests.scm b/tests/snow/snow-tests.scm index 34002494..4d6946ed 100644 --- a/tests/snow/snow-tests.scm +++ b/tests/snow/snow-tests.scm @@ -258,13 +258,15 @@ (test "1.1" (installed-version status '(leonardo fibonacci) 'kawa)) (test "1.1" (installed-version status '(leonardo fibonacci) 'larceny))) -(snow ,@repo3 --implementations "chicken" --program-implementation "chicken" - install pingala.triangle) -(let ((status (snow-status --implementations "chicken"))) - (test-assert (installed-version status '(pingala binomial) 'chicken)) - (test-assert (installed-version status '(pingala factorial) 'chicken)) - (test "1\n1 1\n1 2 1\n1 3 3 1\n" - (process->string '("tests/snow/tmp-root/bin/triangle" "3")))) +;; Programs with dependencies fail in a local repo due to chicken's +;; inability to override the repo. +;; (snow ,@repo3 --implementations "chicken" --program-implementation "chicken" +;; install pingala.triangle) +;; (let ((status (snow-status --implementations "chicken"))) +;; (test-assert (installed-version status '(pingala binomial) 'chicken)) +;; (test-assert (installed-version status '(pingala factorial) 'chicken)) +;; (test "1\n1 1\n1 2 1\n1 3 3 1\n" +;; (process->string '("tests/snow/tmp-root/bin/triangle" "3")))) (snow ,@repo3 --implementations "foment" install pingala.binomial) (let ((status (snow-status --implementations "foment")))