Skip to content

Commit 39e1eb1

Browse files
committed
support parameter storage classes
1 parent fdc436b commit 39e1eb1

4 files changed

Lines changed: 631 additions & 339 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ script: dev/travis.sh
55
d:
66
- dmd
77
- ldc
8-
- gdc
8+
# - gdc

dev/run-everything

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ DC_EXCLUSIONS='EXCLUDE_GDC'
1212

1313
echo test openmethods...
1414

15-
if ! dub test -q openmethods $*;
15+
if ! dub test --compiler $DC -q openmethods $*;
1616
then
1717
echo "ERROR"
1818
errors=1
@@ -43,15 +43,15 @@ do
4343
echo SKIP $target
4444
else
4545

46-
if ! dub test -q openmethods:$target $*;
46+
if ! dub test --compiler $DC -q openmethods:$target $*;
4747
then
4848
echo "ERROR"
4949
errors=1
5050
fi
5151

5252
if ! grep --quiet library $dir/$target/dub.sdl;
5353
then
54-
if ! dub run -q openmethods:$target $*;
54+
if ! dub run --compiler $DC -q openmethods:$target $*;
5555
then
5656
echo "ERROR"
5757
errors=1
@@ -70,7 +70,7 @@ do
7070
continue
7171
fi
7272

73-
if ! dub run --single -q $dir/$target $*;
73+
if ! dub run --compiler $DC --single -q $dir/$target $*;
7474
then
7575
echo "ERROR"
7676
errors=1

0 commit comments

Comments
 (0)