diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-09-03 11:39:51 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-09-03 11:48:36 +0200 |
commit | 48c7f53930e60eacec82b671d91aaac773ba9bab (patch) | |
tree | ac2f5d6083f86a7d811f93f7a78ef94e4102d866 | |
parent | 0adf3d2461beb0a77978c9b45190947b9b5a608e (diff) |
Fix inttest/ct2 ct spec file location (Thanks Peter Andersson)
The DirRef in the spec file is relative to the directory where the spec
file is located. ct2_rt was erroneously copying the spec file to test/.
-rw-r--r-- | inttest/ct2/ct2_rt.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inttest/ct2/ct2_rt.erl b/inttest/ct2/ct2_rt.erl index 3b81f13..ecab0e4 100644 --- a/inttest/ct2/ct2_rt.erl +++ b/inttest/ct2/ct2_rt.erl @@ -6,7 +6,7 @@ files() -> [{create, "ebin/foo.app", app(foo)}, {copy, "../../rebar", "rebar"}, - {copy, "foo.test.spec", "test/foo.test.spec"}, + {copy, "foo.test.spec", "foo.test.spec"}, {copy, "foo_SUITE.erl", "test/foo_SUITE.erl"}]. run(_Dir) -> |