mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
28 lines
419 B
Diff
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
|
|
-}
|