libdparse icon indicating copy to clipboard operation
libdparse copied to clipboard

Don't quit parsing version block too early

Open ryuukk opened this issue 1 year ago • 2 comments

Fixes https://github.com/dlang-community/DCD/issues/778

ryuukk avatar Aug 15 '24 13:08 ryuukk

DCD BUILD FAILED ❌ dub build of DCD has failed with these changes! Please check your changes again.

Build statistics:

 ------ libdparse statistics ------
 
 statistics (-before, +after)
-library size=3190036 libdparse.a
-rough build time=14s
+library size=3189868 libdparse.a
+rough build time=13s
 
 
 ------ DCD statistics ------
 
 statistics (-before, +after)
 client size=1079792 bin/dcd-client
-server size=3112536 bin/dcd-server
+server size=3112632 bin/dcd-server
 rough build time=60s
 
-DCD run_tests.sh 	Elapsed (wall clock) time (h:mm:ss or m:ss): 0:07.85
-DCD run_tests.sh 	Maximum resident set size (kbytes): 39288
+DCD run_tests.sh 	Elapsed (wall clock) time (h:mm:ss or m:ss): 0:07.90
+DCD run_tests.sh 	Maximum resident set size (kbytes): 42956
 
 short requests: (240x)
-    min request time =     0.010ms
-    10th percentile  =     0.136ms
-    median time      =     0.354ms
-    90th percentile  =     0.596ms
-    max request time =     1.609ms
+    min request time =     0.012ms
+    10th percentile  =     0.144ms
+    median time      =     0.359ms
+    90th percentile  =     0.633ms
+    max request time =     1.628ms
 
 long requests over 10ms: (51x)
-    min request time =    11.997ms
-    10th percentile  =    12.888ms
-    median time      =    13.997ms
-    90th percentile  =    15.413ms
-    max request time =    20.767ms
+    min request time =    11.313ms
+    10th percentile  =    12.498ms
+    median time      =    13.973ms
+    90th percentile  =    16.368ms
+    max request time =    31.624ms
 
 top 5 GC sources in server:
Full build output
DUB version 1.38.0, built on Jul  4 2024
LDC - the LLVM D compiler (1.39.0):
  based on DMD v2.109.1 and LLVM 18.1.6
  built with LDC - the LLVM D compiler (1.39.0)
  Default target: x86_64-unknown-linux-gnu
  Host CPU: znver3
  http://dlang.org - http://wiki.dlang.org/LDC


  Registered Targets:
    aarch64     - AArch64 (little endian)
    aarch64_32  - AArch64 (little endian ILP32)
    aarch64_be  - AArch64 (big endian)
    amdgcn      - AMD GCN GPUs
    arm         - ARM
    arm64       - ARM64 (little endian)
    arm64_32    - ARM64 (little endian ILP32)
    armeb       - ARM (big endian)
    avr         - Atmel AVR Microcontroller
    bpf         - BPF (host endian)
    bpfeb       - BPF (big endian)
    bpfel       - BPF (little endian)
    hexagon     - Hexagon
    lanai       - Lanai
    loongarch32 - 32-bit LoongArch
    loongarch64 - 64-bit LoongArch
    mips        - MIPS (32-bit big endian)
    mips64      - MIPS (64-bit big endian)
    mips64el    - MIPS (64-bit little endian)
    mipsel      - MIPS (32-bit little endian)
    msp430      - MSP430 [experimental]
    nvptx       - NVIDIA PTX 32-bit
    nvptx64     - NVIDIA PTX 64-bit
    ppc32       - PowerPC 32
    ppc32le     - PowerPC 32 LE
    ppc64       - PowerPC 64
    ppc64le     - PowerPC 64 LE
    r600        - AMD GPUs HD2XXX-HD6XXX
    riscv32     - 32-bit RISC-V
    riscv64     - 64-bit RISC-V
    sparc       - Sparc
    sparcel     - Sparc LE
    sparcv9     - Sparc V9
    spirv       - SPIR-V Logical
    spirv32     - SPIR-V 32-bit
    spirv64     - SPIR-V 64-bit
    systemz     - SystemZ
    thumb       - Thumb
    thumbeb     - Thumb (big endian)
    ve          - VE
    wasm32      - WebAssembly 32-bit
    wasm64      - WebAssembly 64-bit
    x86         - 32-bit X86: Pentium-Pro and above
    x86-64      - 64-bit X86: EM64T and AMD64
    xcore       - XCore
   Upgrading project in /home/runner/work/libdparse/libdparse/
    Starting Performing "release" build using /opt/hostedtoolcache/dc/ldc2-1.39.0/x64/ldc2-1.39.0-linux-x86_64/bin/ldc2 for x86_64.
    Building libdparse 0.24.0+commit.3.g9abdfb2: building configuration [library]
STAT:------ libdparse statistics ------
STAT:
STAT:statistics (-before, +after)
STAT:library size=3189868 libdparse.a
STAT:rough build time=13s
STAT:
STAT:
STAT:------ DCD statistics ------
STAT:
{
  "name": "dcd",
  "description": "The D Completion Daemon is an auto-complete program for the D programming language",
  "copyright": "Copyright © 2015-2020, Brian Schott",
  "authors": [
    "Brian Schott"
  ],
  "license": "GPL-3.0",
  "dependencies": {
    ":dsymbol": "*",
    "libdparse": {"path":".."},
    ":common": "*",
    "emsi_containers": "~>0.9.0"
  },
  "subPackages": ["dsymbol", "common"],
  "versions": ["built_with_dub"],
  "configurations": [
    {
      "name": "library",
      "targetType": "library",
      "excludedSourceFiles": [
        "src/dcd/client/*",
        "src/dcd/server/main.d"
      ]
    },
    {
      "name": "client",
      "targetType": "executable",
      "targetPath": "bin/",
      "targetName": "dcd-client",
      "excludedSourceFiles": [
        "src/dcd/server/*"
      ]
    },
    {
      "name": "server",
      "targetType": "executable",
      "targetPath": "bin/",
      "targetName": "dcd-server",
      "excludedSourceFiles": [
        "src/dcd/client/*"
      ]
    }
  ]
}
{
	"fileVersion": 1,
	"versions": {
		"dsymbol": "0.14.1",
		"emsi_containers": "0.9.0",
		"libdparse": {"path":".."},
		"msgpack-d": "1.0.4",
		"stdx-allocator": "2.77.5"
	}
}
STAT:statistics (-before, +after)
STAT:client size=1079792 bin/dcd-client
STAT:server size=3112632 bin/dcd-server
STAT:rough build time=60s
STAT:
[33munix:tc001:[0m ... [32mPass[0m
[33munix:tc002:[0m ... [32mPass[0m
[33munix:tc003:[0m ... [32mPass[0m
[33munix:tc004:[0m ... [32mPass[0m
[33munix:tc005:[0m ... [32mPass[0m
[33munix:tc006:[0m ... [32mPass[0m
[33munix:tc007:[0m ... [32mPass[0m
[33munix:tc008:[0m ... [32mPass[0m
[33munix:tc009:[0m ... [32mPass[0m
[33munix:tc010:[0m ... [32mPass[0m
[33munix:tc011:[0m ... [32mPass[0m
[33munix:tc012:[0m ... [32mPass[0m
[33munix:tc013:[0m ... [32mPass[0m
[33munix:tc014:[0m ... [32mPass[0m
[33munix:tc015:[0m ... [32mPass[0m
[33munix:tc016:[0m ... [32mPass[0m
[33munix:tc017:[0m ... [32mPass[0m
[33munix:tc018:[0m ... [32mPass[0m
[33munix:tc019:[0m ... [32mPass[0m
[33munix:tc020:[0m ... [32mPass[0m
[33munix:tc021:[0m ... [32mPass[0m
[33munix:tc022:[0m ... [32mPass[0m
[33munix:tc023:[0m ... [32mPass[0m
[33munix:tc024:[0m ... [32mPass[0m
[33munix:tc025:[0m ... [32mPass[0m
[33munix:tc026:[0m ... [32mPass[0m
[33munix:tc027:[0m ... [32mPass[0m
[33munix:tc028:[0m ... [32mPass[0m
[33munix:tc029:[0m ... [32mPass[0m
[33munix:tc030:[0m ... [32mPass[0m
[33munix:tc031:[0m ... [32mPass[0m
[33munix:tc032:[0m ... [32mPass[0m
[33munix:tc033:[0m ... [32mPass[0m
[33munix:tc034:[0m ... [32mPass[0m
[33munix:tc035:[0m ... [32mPass[0m
[33munix:tc036:[0m ... [32mPass[0m
[33munix:tc037:[0m ... [32mPass[0m
[33munix:tc038:[0m ... [32mPass[0m
[33munix:tc039:[0m ... [32mPass[0m
[33munix:tc040:[0m ... [32mPass[0m
[33munix:tc041:[0m ... [32mPass[0m
[33munix:tc042:[0m ... [32mPass[0m
[33munix:tc043:[0m ... [32mPass[0m
[33munix:tc044:[0m ... [32mPass[0m
[33munix:tc045:[0m ... [32mPass[0m
[33munix:tc046:[0m ... [32mPass[0m
[33munix:tc047:[0m ... [32mPass[0m
[33munix:tc048:[0m ... [32mPass[0m
[33munix:tc049:[0m ... [32mPass[0m
[33munix:tc050:[0m ... [32mPass[0m
[33munix:tc051:[0m ... [32mPass[0m
[33munix:tc052:[0m ... [32mPass[0m
[33munix:tc053:[0m ... [32mPass[0m
[33munix:tc054:[0m ... [32mPass[0m
[33munix:tc055:[0m ... [32mPass[0m
[33munix:tc056:[0m ... [32mPass[0m
[33munix:tc057:[0m ... [32mPass[0m
[33munix:tc058:[0m ... [32mPass[0m
[33munix:tc059:[0m ... [32mPass[0m
[33munix:tc060:[0m ... [32mPass[0m
[33munix:tc061:[0m ... [32mPass[0m
[33munix:tc062:[0m ... [32mPass[0m
[33munix:tc620:[0m ... [32mPass[0m
[33munix:tc717:[0m ... [32mPass[0m
[33munix:tc_access_modifiers:[0m ... [32mPass[0m
[33munix:tc_accesschain_type:[0m ... [32mPass[0m
[33munix:tc_anon_class:[0m ... [32mPass[0m
[33munix:tc_anon_struct:[0m ... [32mPass[0m
[33munix:tc_bang_op_or_template:[0m ... [32mPass[0m
[33munix:tc_base_template_type:[0m ... [32mPass[0m
[33munix:tc_body_var:[0m ... [32mPass[0m
[33munix:tc_calltip_in_func:[0m ... [32mPass[0m
[33munix:tc_casts:[0m ... [32mPass[0m
[33munix:tc_char_dot:[0m ... [32mPass[0m
[33munix:tc_complete_kw:[0m ... [32mPass[0m
[33munix:tc_ctors:[0m ... [32mPass[0m
[33munix:tc_currmod_fqn:[0m ... [32mPass[0m
[33munix:tc_ditto_scopes:[0m ... [32mPass[0m
[33munix:tc_empty_module:[0m ... [32mPass[0m
00000[33munix:tc_empty_requests:[0m ... [32mPass[0m
[33munix:tc_erroneous_body_content:[0m ... [32mPass[0m
[33munix:tc_extended_ditto:[0m ... [32mPass[0m
[33munix:tc_extended_types:[0m ... [32mPass[0m
[33munix:tc_if_auto_array:[0m ... [32mPass[0m
[33munix:tc_if_var:[0m ... [32mPass[0m
[33munix:tc_import_symbol_list:[0m ... [32mPass[0m
[33munix:tc_incomplete_switch:[0m ... [32mPass[0m
[33munix:tc_inlay_hints:[0m ... [32mPass[0m
[33munix:tc_issue558:[0m ... [32mPass[0m
[33munix:tc_locate_ufcs_function:[0m ... [32mPass[0m
[33munix:tc_middle_of_utf:[0m ... [32mPass[0m
[33munix:tc_module_scope_op:[0m ... [32mPass[0m
[33munix:tc_named_mixin:[0m ... [32mPass[0m
[33munix:tc_opaque_structs:[0m ... [32mPass[0m
[33munix:tc_pointer_type_printing:[0m ... [32mPass[0m
[33munix:tc_pointers:[0m ... [32mPass[0m
[33munix:tc_recursive_public_import:[0m ... [32mPass[0m
[33munix:tc_rm_import:[0m ... [32mPass[0m
[33munix:tc_scope_mess:[0m ... [32mPass[0m
[33munix:tc_selective_import_list:[0m ... [32mPass[0m
[33munix:tc_super_scope:[0m ... [32mPass[0m
[33munix:tc_template_bang_completion:[0m ... [32mPass[0m
[33munix:tc_template_param_props:[0m ... [32mPass[0m
[33munix:tc_traits:[0m ... [32mPass[0m
[33munix:tc_typeof:[0m ... [32mPass[0m
[33munix:tc_ufcs_alias_this_completion:[0m ... [32mPass[0m
[33munix:tc_ufcs_array_type_completion:[0m ... [32mPass[0m
[33munix:tc_ufcs_calltip_in_func:[0m ... [32mPass[0m
[33munix:tc_ufcs_fundamental_types_completion:[0m ... [32mPass[0m
[33munix:tc_ufcs_pointer_type_completion:[0m ... [32mPass[0m
[33munix:tc_ufcs_string_and_string_literal_completion:[0m ... [32mPass[0m
[33munix:tc_ufcs_struct_completion:[0m ... [32mPass[0m
STAT:DCD run_tests.sh 	Elapsed (wall clock) time (h:mm:ss or m:ss): 0:07.90
STAT:DCD run_tests.sh 	Maximum resident set size (kbytes): 42956
STAT:
STAT:short requests: (240x)
STAT:    min request time =     0.012ms
STAT:    10th percentile  =     0.144ms
STAT:    median time      =     0.359ms
STAT:    90th percentile  =     0.633ms
STAT:    max request time =     1.628ms
STAT:
STAT:long requests over 10ms: (51x)
STAT:    min request time =    11.313ms
STAT:    10th percentile  =    12.498ms
STAT:    median time      =    13.973ms
STAT:    90th percentile  =    16.368ms
STAT:    max request time =    31.624ms
STAT:
/opt/hostedtoolcache/dc/dmd-2.109.1/x64/dmd2/linux/bin64/../../src/druntime/import/core/internal/array/utils.d-mixin-122(126,830): Error: semicolon needed to end declaration of `name` instead of `trivia`
../src/dparse/lexer.d(564,58): Error: template instance `std.array.appender!(TokenStructure!(ubyte, "\n    import dparse.lexer : Token;\n\n    this(Token token) pure nothrow @safe @nogc {\n        this(token.type, token.text, token.line, token.column, token.index);\n    }\n\n    int opCmp(size_t i) const pure nothrow @safe @nogc {\n        if (index < i) return -1;\n        if (index > i) return 1;\n        return 0;\n    }\n\n    int opCmp(ref const typeof(this) other) const pure nothrow @safe @nogc {\n        return opCmp(other.index);\n    }\n\n    string toString() const @safe pure\n    {\n        import std.array : appender;\n\n        auto sink = appender!string;\n        toString(sink);\n        return sink.data;\n    }\n\n    void toString(R)(auto ref R sink) const\n    {\n        import std.conv : to;\n        import dparse.lexer : str;\n\n        sink.put(`trivia!\"`);\n        sink.put(str(type));\n        sink.put(`\"(`);\n        sink.put(\"text: \");\n        sink.put([text].to!string[1 .. $ - 1]); // escape hack\n        sink.put(\", index: \");\n        sink.put(index.to!string);\n        sink.put(\", line: \");\n        sink.put(line.to!string);\n        sink.put(\", column: \");\n        sink.put(column.to!string);\n        sink.put(\")\");\n    }\n")[])` error instantiating
/opt/hostedtoolcache/dc/dmd-2.109.1/x64/dmd2/linux/bin64/../../src/druntime/import/core/internal/array/appending.d-mixin-60(64,840): Error: semicolon needed to end declaration of `name` instead of `trivia`
/opt/hostedtoolcache/dc/dmd-2.109.1/x64/dmd2/linux/bin64/../../src/druntime/import/core/internal/array/duplication.d(38,17): Error: template instance `core.internal.array.appending._d_arrayappendcTXTrace!(immutable(TokenStructure!(ubyte, "\n    import dparse.lexer : Token;\n\n    this(Token token) pure nothrow @safe @nogc {\n        this(token.type, token.text, token.line, token.column, token.index);\n    }\n\n    int opCmp(size_t i) const pure nothrow @safe @nogc {\n        if (index < i) return -1;\n        if (index > i) return 1;\n        return 0;\n    }\n\n    int opCmp(ref const typeof(this) other) const pure nothrow @safe @nogc {\n        return opCmp(other.index);\n    }\n\n    string toString() const @safe pure\n    {\n        import std.array : appender;\n\n        auto sink = appender!string;\n        toString(sink);\n        return sink.data;\n    }\n\n    void toString(R)(auto ref R sink) const\n    {\n        import std.conv : to;\n        import dparse.lexer : str;\n\n        sink.put(`trivia!\"`);\n        sink.put(str(type));\n        sink.put(`\"(`);\n        sink.put(\"text: \");\n        sink.put([text].to!string[1 .. $ - 1]); // escape hack\n        sink.put(\", index: \");\n        sink.put(index.to!string);\n        sink.put(\", line: \");\n        sink.put(line.to!string);\n        sink.put(\", column: \");\n        sink.put(column.to!string);\n        sink.put(\")\");\n    }\n"))[], immutable(TokenStructure!(ubyte, "\n    import dparse.lexer : Token;\n\n    this(Token token) pure nothrow @safe @nogc {\n        this(token.type, token.text, token.line, token.column, token.index);\n    }\n\n    int opCmp(size_t i) const pure nothrow @safe @nogc {\n        if (index < i) return -1;\n        if (index > i) return 1;\n        return 0;\n    }\n\n    int opCmp(ref const typeof(this) other) const pure nothrow @safe @nogc {\n        return opCmp(other.index);\n    }\n\n    string toString() const @safe pure\n    {\n        import std.array : appender;\n\n        auto sink = appender!string;\n        toString(sink);\n        return sink.data;\n    }\n\n    void toString(R)(auto ref R sink) const\n    {\n        import std.conv : to;\n        import dparse.lexer : str;\n\n        sink.put(`trivia!\"`);\n        sink.put(str(type));\n        sink.put(`\"(`);\n        sink.put(\"text: \");\n        sink.put([text].to!string[1 .. $ - 1]); // escape hack\n        sink.put(\", index: \");\n        sink.put(index.to!string);\n        sink.put(\", line: \");\n        sink.put(line.to!string);\n        sink.put(\", column: \");\n        sink.put(column.to!string);\n        sink.put(\")\");\n    }\n")))` error instantiating
Error dmd failed with exit code 1.
DCD BUILD FAILED
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc001:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc002:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc003:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc004:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc005:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc006:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc007:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc008:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc009:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc010:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc011:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc012:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc013:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc014:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc015:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc016:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc017:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc018:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc019:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc020:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc021:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc022:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc023:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc024:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc025:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc026:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc027:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc028:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc029:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc030:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc031:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc032:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc033:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc034:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc035:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc036:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc037:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc038:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc039:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc040:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc041:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc042:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc043:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc044:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc045:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc046:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc047:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc048:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc049:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc050:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc051:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc052:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc053:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc054:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc055:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc056:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc057:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc058:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc059:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc060:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc061:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc062:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc620:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc717:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_access_modifiers:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_accesschain_type:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_anon_class:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_anon_struct:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_bang_op_or_template:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_base_template_type:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_body_var:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_calltip_in_func:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_casts:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_char_dot:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_complete_kw:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ctors:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_currmod_fqn:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ditto_scopes:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_empty_module:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_empty_requests:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_erroneous_body_content:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_extended_ditto:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_extended_types:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_if_auto_array:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_if_var:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_import_symbol_list:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_incomplete_switch:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_inlay_hints:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_issue558:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_locate_ufcs_function:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_middle_of_utf:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_module_scope_op:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_named_mixin:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_opaque_structs:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_pointer_type_printing:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_pointers:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_recursive_public_import:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_rm_import:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_scope_mess:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_selective_import_list:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_super_scope:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_template_bang_completion:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_template_param_props:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_traits:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_typeof:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ufcs_alias_this_completion:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ufcs_array_type_completion:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ufcs_calltip_in_func:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ufcs_fundamental_types_completion:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ufcs_pointer_type_completion:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ufcs_string_and_string_literal_completion:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
std.socket.SocketOSException@std/socket.d(2873): Unable to connect socket: No such file or directory
[33munix:tc_ufcs_struct_completion:[0m ... [31mFail[0m
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
Error: /tmp/generate_tests-c82225 failed with status: 1
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
STAT:top 5 GC sources in server:
./run_tests.sh: line 69: ../bin/dcd-server: No such file or directory
head: cannot open 'profilegc.log' for reading: No such file or directory

github-actions[bot] avatar Aug 15 '24 13:08 github-actions[bot]