[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: tests: Skip 'program-file' test when shebang is too long.
From: |
Ludovic Courtès |
Subject: |
01/02: tests: Skip 'program-file' test when shebang is too long. |
Date: |
Wed, 04 Nov 2015 11:18:43 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 47b3124a8ecf3cf5826ee909776936a3107350f3
Author: Ludovic Courtès <address@hidden>
Date: Wed Nov 4 11:59:46 2015 +0100
tests: Skip 'program-file' test when shebang is too long.
* tests/gexp.scm ("program-file"): Skip when SHEBANG is too long.
---
tests/gexp.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tests/gexp.scm b/tests/gexp.scm
index 4860a8e..87c7747 100644
--- a/tests/gexp.scm
+++ b/tests/gexp.scm
@@ -600,7 +600,7 @@
;; If we're going to hit the silly shebang limit (128 chars on Linux-based
;; systems), then skip the following test.
-(test-skip (if (> (string-length shebang) 127) 1 0))
+(test-skip (if (> (string-length shebang) 127) 2 0))
(test-assertm "gexp->script"
(mlet* %store-monad ((n -> (random (expt 2 50)))