1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 04:35:39 +03:00
aports/testing/dmd/20-dmd-remove-tests.patch
Geod24 99910d9bf1 testing/dmd: new aport
D Programming Language reference compiler
https://github.com/dlang/dmd
2020-03-02 11:42:29 +01:00

28 lines
419 B
Diff

diff -Nurp a/dmd/test/runnable/gdb4181.d b/dmd/test/runnable/gdb4181.d
deleted file mode 100644
--- a/dmd/test/runnable/gdb4181.d
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
-REQUIRED_ARGS: -g
-PERMUTE_ARGS:
-GDB_SCRIPT:
----
-b 22
-r
-echo RESULT=
-p 'gdb.x' + 'gdb.STest.y'
----
-GDB_MATCH: RESULT=.*33
-*/
-module gdb;
-
-int x;
-struct STest { static int y; }
-
-void main()
-{
- x = 11;
- STest.y = 22;
- // BP
-}