Browse Source

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/.
pull/3/head
Tuncer Ayaz 12 years ago
parent
commit
48c7f53930
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      inttest/ct2/ct2_rt.erl

+ 1
- 1
inttest/ct2/ct2_rt.erl View File

@ -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) ->

Loading…
Cancel
Save