aboutsummaryrefslogtreecommitdiffstats
path: root/testing/dmd/20-dmd-remove-tests.patch
diff options
context:
space:
mode:
authorGeod24 <pro.mathias.lang@gmail.com>2019-08-16 16:22:10 +0900
committerRasmus Thomsen <oss@cogitri.dev>2020-03-02 11:42:29 +0100
commit99910d9bf16077800a7a8f708d787785121a01a4 (patch)
treedc1999b98b95329b53aaa4010d7a39d9051eb376 /testing/dmd/20-dmd-remove-tests.patch
parent72a4c23d109b8ea8248887634f5a628cb3d48b21 (diff)
downloadaports-99910d9bf16077800a7a8f708d787785121a01a4.tar.bz2
aports-99910d9bf16077800a7a8f708d787785121a01a4.tar.xz
testing/dmd: new aport
D Programming Language reference compiler https://github.com/dlang/dmd
Diffstat (limited to 'testing/dmd/20-dmd-remove-tests.patch')
-rw-r--r--testing/dmd/20-dmd-remove-tests.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/dmd/20-dmd-remove-tests.patch b/testing/dmd/20-dmd-remove-tests.patch
new file mode 100644
index 0000000000..bdab43fd12
--- /dev/null
+++ b/testing/dmd/20-dmd-remove-tests.patch
@@ -0,0 +1,28 @@
+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
+-}