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
| | This test started failing on core-updates-frozen sometime after this commit:
https://git.savannah.gnu.org/cgit/guix.git/log/?id=727f05e1e285aa52f5a19ec923fdc2259859b4b1
It reports the wrong error message, with a lack of a leading "./" in the file name. So it
passes in that it correctly errors on the missing file, but has the wrong output. This
patch removes the test file to ignore the test.
diff --git a/test/regress/BF3C1F82-2.test b/test/regress/BF3C1F82-2.test
deleted file mode 100644
index a7808504..00000000
--- a/test/regress/BF3C1F82-2.test
+++ /dev/null
@@ -1,14 +0,0 @@
-; Check that include directives are relative for "-f /dev/stdin"
-include non-existent-ledger-file-BF3C1F82
-
-test -f - reg -> 1
-__ERROR__
-While parsing file "", line 2:
-Error: File to include was not found: "./non-existent-ledger-file-BF3C1F82"
-end test
-
-test -f /dev/stdin reg -> 1
-__ERROR__
-While parsing file "", line 2:
-Error: File to include was not found: "./non-existent-ledger-file-BF3C1F82"
-end test
|