Merge pull request #590 from Basile-z/upgrade-deps

upgrade dependencies
This commit is contained in:
Basile-z 2019-04-01 09:00:05 +02:00 committed by GitHub
commit d42fec7590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 32 additions and 6 deletions

View File

@ -1,3 +1,4 @@
dist: xenial
sudo: false
language: d
d:

@ -1 +1 @@
Subproject commit 836a0cc93a98815ac309294c45aab0ba98018073
Subproject commit 257c0418f34709dd667f95b5dffabedc2b3099e4

@ -1 +1 @@
Subproject commit de7389be5dda532ef7cd431d03efbfe6b9522687
Subproject commit 5b7f06ff005c63a2bf22db0736097ef35b9d36e7

View File

@ -7,11 +7,11 @@
],
"license": "GPL-3.0",
"dependencies": {
"dsymbol": "~>0.6.0",
"libdparse": "~>0.11.2",
"dsymbol": "~>0.6.4",
"libdparse": "~>0.11.4",
"msgpack-d": "~>1.0.0-beta.7",
"stdx-allocator": "~>2.77.5",
"emsi_containers": "0.8.0-alpha.11"
"emsi_containers": "~>0.8.0-alpha.13"
},
"stringImportPaths" : [
"bin"

@ -1 +1 @@
Subproject commit 23b20de4ee48ed3f0e8729f6318405543cb3a611
Subproject commit aae371931a99027465952cd6fdaede4eb4743e76

View File

@ -1,4 +1,5 @@
identifiers
Base l
__monitor v
__vptr v
alignof k

View File

@ -1,4 +1,5 @@
identifiers
Base l
__monitor v
__vptr v
alignof k

View File

@ -0,0 +1,2 @@
identifiers
foo f

View File

@ -0,0 +1 @@
interface Base {void foo();} class Derived : Base {int i; void foo(){}} void main(){Derived d; d.Base.f}

View File

@ -0,0 +1,5 @@
set -e
set -u
../../bin/dcd-client $1 file.d -c103 > actual.txt
diff actual.txt expected.txt

View File

@ -1,4 +1,5 @@
identifiers
Bar l
__monitor v
__vptr v
alignof k

View File

@ -0,0 +1,2 @@
identifiers
avariable v

View File

@ -0,0 +1 @@
struct Foo { struct { int avariable; } } void main(){ Foo foo; foo.ava }

5
tests/tc_anon_struct/run.sh Executable file
View File

@ -0,0 +1,5 @@
set -e
set -u
../../bin/dcd-client $1 file.d -c70 > actual.txt
diff actual.txt expected.txt

View File

View File

@ -0,0 +1 @@
import empty:

5
tests/tc_empty_module/run.sh Executable file
View File

@ -0,0 +1,5 @@
set -e
set -u
../../bin/dcd-client $1 file.d --extended -c$(stat -c %s file.d) > actual.txt
diff actual.txt expected.txt