Skip to content

Commit

Permalink
support parameter storage classes
Browse files Browse the repository at this point in the history
  • Loading branch information
jll63 committed Feb 9, 2020
1 parent fdc436b commit 39e1eb1
Show file tree
Hide file tree
Showing 4 changed files with 631 additions and 339 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ script: dev/travis.sh
d:
- dmd
- ldc
- gdc
# - gdc
8 changes: 4 additions & 4 deletions dev/run-everything
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DC_EXCLUSIONS='EXCLUDE_GDC'

echo test openmethods...

if ! dub test -q openmethods $*;
if ! dub test --compiler $DC -q openmethods $*;
then
echo "ERROR"
errors=1
Expand Down Expand Up @@ -43,15 +43,15 @@ do
echo SKIP $target
else

if ! dub test -q openmethods:$target $*;
if ! dub test --compiler $DC -q openmethods:$target $*;
then
echo "ERROR"
errors=1
fi

if ! grep --quiet library $dir/$target/dub.sdl;
then
if ! dub run -q openmethods:$target $*;
if ! dub run --compiler $DC -q openmethods:$target $*;
then
echo "ERROR"
errors=1
Expand All @@ -70,7 +70,7 @@ do
continue
fi

if ! dub run --single -q $dir/$target $*;
if ! dub run --compiler $DC --single -q $dir/$target $*;
then
echo "ERROR"
errors=1
Expand Down
Loading

0 comments on commit 39e1eb1

Please sign in to comment.