diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-08-29 11:33:41 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-08-29 11:33:41 +0200 |
commit | 154db46db817fff315b1a0ef2da36511e382cfad (patch) | |
tree | bb729c758dd394a3ec246977809e2b1cc4258fc5 /tests | |
parent | 7e3ebc1bccb689176cfadd485fe8777bc343a5e6 (diff) | |
download | Nim-154db46db817fff315b1a0ef2da36511e382cfad.tar.gz |
fixes a regression that caused --import in a config file to break things
Diffstat (limited to 'tests')
-rw-r--r-- | tests/import_in_config/nim.cfg | 2 | ||||
-rw-r--r-- | tests/import_in_config/other.nim | 0 | ||||
-rw-r--r-- | tests/import_in_config/tmain.nim | 0 |
3 files changed, 2 insertions, 0 deletions
diff --git a/tests/import_in_config/nim.cfg b/tests/import_in_config/nim.cfg new file mode 100644 index 000000000..af112d112 --- /dev/null +++ b/tests/import_in_config/nim.cfg @@ -0,0 +1,2 @@ +import = "other" +path = "$projectDir" diff --git a/tests/import_in_config/other.nim b/tests/import_in_config/other.nim new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/tests/import_in_config/other.nim diff --git a/tests/import_in_config/tmain.nim b/tests/import_in_config/tmain.nim new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/tests/import_in_config/tmain.nim |