diff --git a/test/issue346-dedundant-flags.sh b/test/issue346-dedundant-flags.sh deleted file mode 100755 index 3898cb5..0000000 --- a/test/issue346-dedundant-flags.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cd ${CURR_DIR}/issue346-redundant-flags -${DUB} build --bare --force --compiler=${COMPILER} -a x86 main | grep -e "-m32 -m32" && exit 1 diff --git a/test/issue346-dedundant-flags/.no_build b/test/issue346-dedundant-flags/.no_build deleted file mode 100644 index e69de29..0000000 --- a/test/issue346-dedundant-flags/.no_build +++ /dev/null diff --git a/test/issue346-dedundant-flags/.no_run b/test/issue346-dedundant-flags/.no_run deleted file mode 100644 index e69de29..0000000 --- a/test/issue346-dedundant-flags/.no_run +++ /dev/null diff --git a/test/issue346-dedundant-flags/.no_test b/test/issue346-dedundant-flags/.no_test deleted file mode 100644 index e69de29..0000000 --- a/test/issue346-dedundant-flags/.no_test +++ /dev/null diff --git a/test/issue346-dedundant-flags/a/dub.json b/test/issue346-dedundant-flags/a/dub.json deleted file mode 100644 index 5b91181..0000000 --- a/test/issue346-dedundant-flags/a/dub.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "name": "a" -} \ No newline at end of file diff --git a/test/issue346-dedundant-flags/a/source/a.d b/test/issue346-dedundant-flags/a/source/a.d deleted file mode 100644 index 1581659..0000000 --- a/test/issue346-dedundant-flags/a/source/a.d +++ /dev/null @@ -1,5 +0,0 @@ -module a; - -void afun() -{ -} diff --git a/test/issue346-dedundant-flags/b/dub.json b/test/issue346-dedundant-flags/b/dub.json deleted file mode 100644 index 2824d72..0000000 --- a/test/issue346-dedundant-flags/b/dub.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "name": "b" -} \ No newline at end of file diff --git a/test/issue346-dedundant-flags/b/source/b.d b/test/issue346-dedundant-flags/b/source/b.d deleted file mode 100644 index 003a74e..0000000 --- a/test/issue346-dedundant-flags/b/source/b.d +++ /dev/null @@ -1,5 +0,0 @@ -module b; - -void bfun() -{ -} diff --git a/test/issue346-dedundant-flags/main/dub.json b/test/issue346-dedundant-flags/main/dub.json deleted file mode 100644 index 0160e79..0000000 --- a/test/issue346-dedundant-flags/main/dub.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "main", - "dependencies": { - "a": {"path": "../a"}, - "b": {"path": "../b"} - } -} \ No newline at end of file diff --git a/test/issue346-dedundant-flags/main/source/main.d b/test/issue346-dedundant-flags/main/source/main.d deleted file mode 100644 index fba3ebb..0000000 --- a/test/issue346-dedundant-flags/main/source/main.d +++ /dev/null @@ -1,8 +0,0 @@ -import a; -import b; - -void main() -{ - afun(); - bfun(); -} \ No newline at end of file diff --git a/test/issue346-redundant-flags.sh b/test/issue346-redundant-flags.sh new file mode 100644 index 0000000..acb1f54 --- /dev/null +++ b/test/issue346-redundant-flags.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd ${CURR_DIR}/issue346-redundant-flags +${DUB} build --bare --force --compiler=${COMPILER} -a x86 main | grep -e "-m32 -m32" 2>&1 && exit 1 || exit 0 diff --git a/test/issue346-redundant-flags/.no_build b/test/issue346-redundant-flags/.no_build new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/issue346-redundant-flags/.no_build diff --git a/test/issue346-redundant-flags/.no_run b/test/issue346-redundant-flags/.no_run new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/issue346-redundant-flags/.no_run diff --git a/test/issue346-redundant-flags/.no_test b/test/issue346-redundant-flags/.no_test new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/issue346-redundant-flags/.no_test diff --git a/test/issue346-redundant-flags/a/dub.json b/test/issue346-redundant-flags/a/dub.json new file mode 100644 index 0000000..5b91181 --- /dev/null +++ b/test/issue346-redundant-flags/a/dub.json @@ -0,0 +1,3 @@ +{ + "name": "a" +} \ No newline at end of file diff --git a/test/issue346-redundant-flags/a/source/a.d b/test/issue346-redundant-flags/a/source/a.d new file mode 100644 index 0000000..1581659 --- /dev/null +++ b/test/issue346-redundant-flags/a/source/a.d @@ -0,0 +1,5 @@ +module a; + +void afun() +{ +} diff --git a/test/issue346-redundant-flags/b/dub.json b/test/issue346-redundant-flags/b/dub.json new file mode 100644 index 0000000..2824d72 --- /dev/null +++ b/test/issue346-redundant-flags/b/dub.json @@ -0,0 +1,3 @@ +{ + "name": "b" +} \ No newline at end of file diff --git a/test/issue346-redundant-flags/b/source/b.d b/test/issue346-redundant-flags/b/source/b.d new file mode 100644 index 0000000..003a74e --- /dev/null +++ b/test/issue346-redundant-flags/b/source/b.d @@ -0,0 +1,5 @@ +module b; + +void bfun() +{ +} diff --git a/test/issue346-redundant-flags/main/dub.json b/test/issue346-redundant-flags/main/dub.json new file mode 100644 index 0000000..0160e79 --- /dev/null +++ b/test/issue346-redundant-flags/main/dub.json @@ -0,0 +1,7 @@ +{ + "name": "main", + "dependencies": { + "a": {"path": "../a"}, + "b": {"path": "../b"} + } +} \ No newline at end of file diff --git a/test/issue346-redundant-flags/main/source/main.d b/test/issue346-redundant-flags/main/source/main.d new file mode 100644 index 0000000..fba3ebb --- /dev/null +++ b/test/issue346-redundant-flags/main/source/main.d @@ -0,0 +1,8 @@ +import a; +import b; + +void main() +{ + afun(); + bfun(); +} \ No newline at end of file