all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob e72df0dc1b14e10a7b8e1e3baaef08e65c9bc822 2945 bytes (raw)
name: gnu/packages/patches/ldc-0.17.1-disable-tests.patch 	 # note: path name is non-authoritative(*)

 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
 
diff -ru a/std/datetime.d b/std/datetime.d
--- a/std/datetime.d	2016-08-02 23:56:13.969292202 +0200
+++ b/std/datetime.d	2016-08-02 23:57:39.078408313 +0200
@@ -28080,9 +28080,6 @@
         import std.algorithm : sort;
         import std.range : retro;
         import std.format : format;
-
-        name = strip(name);
-
         enforce(tzDatabaseDir.exists(), new DateTimeException(format("Directory %s does not exist.", tzDatabaseDir)));
         enforce(tzDatabaseDir.isDir, new DateTimeException(format("%s is not a directory.", tzDatabaseDir)));
 
@@ -28094,7 +28091,10 @@
             immutable file = buildNormalizedPath(tzDatabaseDir, tzFilename);
         }
         else
-            immutable file = buildNormalizedPath(tzDatabaseDir, name);
+        {
+            auto filename = "./" ~ strip(name); // make sure the prefix is not stripped
+            immutable file = buildNormalizedPath(tzDatabaseDir, filename);
+        }
 
         enforce(file.exists(), new DateTimeException(format("File %s does not exist.", file)));
         enforce(file.isFile, new DateTimeException(format("%s is not a file.", file)));
diff -ru a/std/path.d b/std/path.d
--- a/std/path.d	2016-08-02 23:56:03.781158908 +0200
+++ b/std/path.d	2016-08-02 23:54:06.111624406 +0200
@@ -3724,8 +3724,8 @@
         }
         else
         {
-            assert(expandTilde("~root") == "/root", expandTilde("~root"));
-            assert(expandTilde("~root/") == "/root/", expandTilde("~root/"));
+            //assert(expandTilde("~root") == "/root", expandTilde("~root"));
+            //assert(expandTilde("~root/") == "/root/", expandTilde("~root/"));
         }
         assert(expandTilde("~Idontexist/hey") == "~Idontexist/hey");
     }
diff -ru a/std/socket.d b/std/socket.d
--- a/std/socket.d	2016-08-02 23:56:22.881408857 +0200
+++ b/std/socket.d	2016-08-03 10:09:44.761019447 +0200
@@ -501,18 +501,19 @@
 version(CRuntime_Bionic) {} else
 unittest
 {
-    softUnittest({
+    pragma(msg, "test disabled on GNU Guix");
+    //softUnittest({
         Protocol proto = new Protocol;
-        assert(proto.getProtocolByType(ProtocolType.TCP));
+        //assert(proto.getProtocolByType(ProtocolType.TCP));
         //writeln("About protocol TCP:");
         //writefln("\tName: %s", proto.name);
         // foreach(string s; proto.aliases)
         // {
         //      writefln("\tAlias: %s", s);
         // }
-        assert(proto.name == "tcp");
-        assert(proto.aliases.length == 1 && proto.aliases[0] == "TCP");
-    });
+        //assert(proto.name == "tcp");
+        //assert(proto.aliases.length == 1 && proto.aliases[0] == "TCP");
+    //});
 }
 
 
@@ -842,6 +843,8 @@
 
 unittest
 {
+    pragma(msg, "test disabled on GNU Guix");
+    /*
     InternetHost ih = new InternetHost;
 
     ih.getHostByAddr(0x7F_00_00_01);
@@ -872,6 +875,7 @@
         //      writefln("aliases[%d] = %s", i, s);
         // }
     });
+    */
 }
 
 

debug log:

solving e72df0d ...
found e72df0d in https://yhetil.org/guix/20160803092015.8541-4-dannym@scratchpost.org/ ||
	https://yhetil.org/guix/20160830060719.11076-4-dannym@scratchpost.org/ ||
	https://yhetil.org/guix/20160830165200.28401-4-dannym@scratchpost.org/

applying [1/1] https://yhetil.org/guix/20160803092015.8541-4-dannym@scratchpost.org/
diff --git a/gnu/packages/patches/ldc-0.17.1-disable-tests.patch b/gnu/packages/patches/ldc-0.17.1-disable-tests.patch
new file mode 100644
index 0000000..e72df0d

1:19: trailing whitespace.
 
1:29: trailing whitespace.
 
1:72: trailing whitespace.
 
1:73: trailing whitespace.
 
1:75: trailing whitespace.
 
Checking patch gnu/packages/patches/ldc-0.17.1-disable-tests.patch...
Applied patch gnu/packages/patches/ldc-0.17.1-disable-tests.patch cleanly.
warning: squelched 4 whitespace errors
warning: 9 lines add whitespace errors.

skipping https://yhetil.org/guix/20160830060719.11076-4-dannym@scratchpost.org/ for e72df0d
skipping https://yhetil.org/guix/20160830165200.28401-4-dannym@scratchpost.org/ for e72df0d
index at:
100644 e72df0dc1b14e10a7b8e1e3baaef08e65c9bc822	gnu/packages/patches/ldc-0.17.1-disable-tests.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.